> ## Documentation Index
> Fetch the complete documentation index at: https://docs.civicmarketplace.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Supplier



## OpenAPI

````yaml GET /v1/suppliers/{id}
openapi: 3.1.0
info:
  title: CivicMarketplace Partner API
  version: 1.0.0
  description: |
    Read-only partner API for accessing contracts, suppliers, and reference
    taxonomy. Authenticate with a partner-scoped API key.
  contact:
    name: CivicMarketplace Engineering
    email: engineering@civicmarketplace.com
servers:
  - url: https://prod-api.civicmarketplace.com
    description: Production
  - url: https://uat-api.civicmarketplace.com
    description: UAT
  - url: https://dev-api.civicmarketplace.com
    description: Dev
security:
  - apiKey: []
tags:
  - name: Contracts
  - name: Suppliers
  - name: Taxonomy
paths:
  /v1/suppliers/{id}:
    get:
      tags:
        - Suppliers
      summary: Get supplier by id
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Supplier
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Supplier'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Supplier:
      allOf:
        - $ref: '#/components/schemas/SupplierRef'
        - type: object
          required:
            - updated_at
            - certifications
          properties:
            updated_at:
              type: string
              format: date-time
            certifications:
              type: array
              description: >-
                Capped preview of the supplier's certifications (abbreviation or
                name), SBE + technical. Full set on the supplier detail
                endpoint.
              items:
                type: string
                example: DBE
    SupplierRef:
      type: object
      required:
        - id
        - name
        - states_served
      properties:
        id:
          type: string
        name:
          type: string
        location:
          type: string
          nullable: true
          example: Austin, TX
        logo:
          type: string
          format: uri
          nullable: true
        email:
          type: string
          format: email
          nullable: true
        website:
          type: string
          format: uri
          nullable: true
        states_served:
          type: array
          description: >-
            USPS two-letter codes for the U.S. states this supplier serves,
            sorted alphabetically. Empty when no service areas are configured.
            Present on suppliers embedded in a contract as well as on the
            suppliers endpoint.
          items:
            type: string
            minLength: 2
            maxLength: 2
            example: TX
          example:
            - CA
            - TX
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - request_id
          properties:
            code:
              type: string
              enum:
                - unauthorized
                - forbidden
                - not_found
                - rate_limited
                - validation_failed
                - internal_error
            message:
              type: string
            request_id:
              type: string
  responses:
    NotFound:
      description: Resource not found or not accessible to this partner
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: cmp_(live|test)_*

````