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

> Master list of certifications suppliers can hold — SBE/diversity (DBE, MBE, HUB, WOSB…) and technical (ISO 37001, AZ-104, A+…). Use the returned abbreviation or name as the `certification` filter on /v1/suppliers.



## OpenAPI

````yaml GET /v1/certifications
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/certifications:
    get:
      tags:
        - Taxonomy
      summary: List certifications
      description: >-
        Master list of certifications suppliers can hold — SBE/diversity (DBE,
        MBE, HUB, WOSB…) and technical (ISO 37001, AZ-104, A+…). Use the
        returned abbreviation or name as the `certification` filter on
        /v1/suppliers.
      parameters:
        - in: query
          name: q
          description: Search by name or abbreviation.
          schema:
            type: string
            maxLength: 200
        - in: query
          name: type
          description: Limit to one family.
          schema:
            type: string
            enum:
              - sbe
              - technical
        - in: query
          name: cursor
          schema:
            type: string
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
      responses:
        '200':
          description: Certification page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CertificationListResponse'
components:
  schemas:
    CertificationListResponse:
      type: object
      required:
        - data
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Certification'
        meta:
          $ref: '#/components/schemas/PageMeta'
    Certification:
      type: object
      required:
        - name
        - type
      properties:
        name:
          type: string
          example: ISO 37001
        abbreviation:
          type: string
          nullable: true
          example: DBE
        type:
          type: string
          enum:
            - sbe
            - technical
          description: >-
            sbe = SBE/diversity certification; technical = technical/vendor
            certification.
    PageMeta:
      type: object
      required:
        - next_cursor
        - limit
      properties:
        next_cursor:
          type: string
          nullable: true
        limit:
          type: integer
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: cmp_(live|test)_*

````