Crunchbase Metadata API

The Metadata API from Crunchbase — 3 operation(s) for metadata.

Operations 3

GET /md/applications/crunchbase/openapi.yaml Retrieve OpenAPI specification document in yaml format #
GET /md/applications/crunchbase/openapi.json Retrieve OpenAPI specification document in json format #
GET /md/applications/crunchbase/fields Returns the list of fields for collections with type and description #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/crunchbase-data-metadata-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

crunchbase-data-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Crunchbase Data Metadata API
  version: 1.1.0
  contact:
    email: partnerships@crunchbase.com
  termsOfService: https://data.crunchbase.com/docs/terms
  description: 'Operations tagged Metadata across 6 of this provider''s published API definitions: crunchbase-data-advanced-financials-openapi.yml, crunchbase-data-core-financials-openapi.yml, crunchbase-data-firmographic-openapi.yml, crunchbase-data-insights-openapi.yml, crunchbase-data-predictions-insights-openapi.yml, crunchbase-data-predictions-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.crunchbase.com/v4
security:
- ApiKeyAuthHeader: []
tags:
- name: Metadata
paths:
  /md/applications/crunchbase/openapi.yaml:
    get:
      tags:
      - Metadata
      summary: Retrieve OpenAPI specification document in yaml format
      operationId: getOpenApiSpecYaml
      responses:
        '200':
          $ref: '#/components/responses/OpenAPISpecification'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /md/applications/crunchbase/openapi.json:
    get:
      tags:
      - Metadata
      summary: Retrieve OpenAPI specification document in json format
      operationId: getOpenApiSpecJson
      responses:
        '200':
          $ref: '#/components/responses/OpenAPISpecification'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
  /md/applications/crunchbase/fields:
    get:
      tags:
      - Metadata
      summary: Returns the list of fields for collections with type and description
      operationId: getFieldsMetadata
      parameters:
      - name: collection_ids
        in: query
        description: A comma separated list of collection ids to filter against. Leaving this blank means it will search across all collections.
        style: form
        explode: false
        schema:
          title: collection_ids
          type: array
          items:
            type: string
            enum:
            - acquisitions
            - addresses
            - categories
            - category_groups
            - degrees
            - diversity_spotlights
            - event_appearances
            - events
            - funding_rounds
            - funds
            - investments
            - ipos
            - jobs
            - locations
            - organizations
            - ownerships
            - people
            - press_references
            - principals
      responses:
        '200':
          $ref: '#/components/responses/FieldsMetadataCSV'
        '400':
          $ref: '#/components/responses/GenericBadRequestError'
        '500':
          $ref: '#/components/responses/GenericInternalServerError'
    servers:
    - url: https://api.crunchbase.com/v4
components:
  responses:
    FieldsMetadataCSV:
      description: Fields metadata in CSV format
      content:
        text/csv:
          schema:
            type: string
            format: binary
    OpenAPISpecification:
      description: OpenAPI Specification document
      content:
        application/json:
          schema:
            type: object
            description: OpenAPI 3.0 specification document
    GenericInternalServerError:
      description: Request Failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Errors'
    GenericBadRequestError:
      description: Bad Request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Errors'
  schemas:
    Errors:
      type: object
      description: Developer friendly error message
      properties:
        value:
          type: string
          description: stuff
  securitySchemes:
    ApiKeyAuthHeader:
      type: apiKey
      name: X-cb-user-key
      in: header
externalDocs:
  description: API Reference doc
  url: https://data.crunchbase.com/docs
x-refined-from:
- crunchbase-data-advanced-financials-openapi.yml
- crunchbase-data-core-financials-openapi.yml
- crunchbase-data-firmographic-openapi.yml
- crunchbase-data-insights-openapi.yml
- crunchbase-data-predictions-insights-openapi.yml
- crunchbase-data-predictions-openapi.yml