> ## 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.

# List Suppliers



## OpenAPI

````yaml GET /v1/suppliers
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:
    get:
      tags:
        - Suppliers
      summary: List suppliers
      parameters:
        - in: query
          name: q
          description: Free-text search across name, short intro, and about.
          schema:
            type: string
            maxLength: 200
        - in: query
          name: state
          description: >-
            Two-letter USPS code; matches suppliers serving or based in that
            state.
          schema:
            type: string
            pattern: ^[A-Za-z]{2}$
        - in: query
          name: certification
          description: >-
            Comma-separated certifications a supplier must hold (ALL of them).
            Each value is an abbreviation or name from /v1/certifications (e.g.
            DBE, MBE, WOSB, ISO 37001). Covers SBE and technical certifications.
          schema:
            type: string
        - in: query
          name: city_service
          description: >-
            City-service id from /v1/city-services; matches suppliers offering
            that service.
          schema:
            type: string
        - in: query
          name: updated_since
          schema:
            type: string
            format: date-time
        - in: query
          name: cursor
          schema:
            type: string
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
      responses:
        '200':
          description: Supplier page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SupplierListResponse'
components:
  schemas:
    SupplierListResponse:
      type: object
      required:
        - data
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Supplier'
        meta:
          $ref: '#/components/schemas/PageMeta'
    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
    PageMeta:
      type: object
      required:
        - next_cursor
        - limit
      properties:
        next_cursor:
          type: string
          nullable: true
        limit:
          type: integer
    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
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: cmp_(live|test)_*

````