Bombora Firmographic API

The Firmographic API from Bombora — 3 operation(s) for firmographic.

Operations 3

GET /firmographic/company-size Returns a list of company size attributes.
GET /firmographic/industry Returns a list of industry attributes.
GET /firmographic/revenue Returns a list of company revenue attributes.

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/bombora-firmographic-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

bombora-firmographic-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference Firmographic API
  description: The Reference API is used to retrieve reference data that is used throughout Bombora's APIs.
  version: 1.0.1
servers:
- url: https://api.bombora.com/reference/v1
security:
- bearerAuth: []
tags:
- name: Firmographic
paths:
  /firmographic/company-size:
    get:
      tags:
      - Firmographic
      summary: Returns a list of company size attributes.
      description: This endpoint returns a collection of company size attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  companySize:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: A name description of the company size.
              example:
                companySize:
                - name: Large (1,000 - 4,999 Employees)
                - name: Medium (200 - 499 Employees)
                - name: Medium-Large (500 - 999 Employees)
                - name: Medium-Small (50 - 199 Employees)
                - name: Micro (1 - 9 Employees)
                - name: Small (10 - 49 Employees)
                - name: XLarge (5,000 - 10,000 Employees)
                - name: XXLarge (10,000+ Employees)
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
  /firmographic/industry:
    get:
      tags:
      - Firmographic
      summary: Returns a list of industry attributes.
      description: This endpoint returns a collection of industry attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  industry:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The name of the industry.
              example:
                industry:
                - name: Agriculture
                - name: Agriculture > Animals & Livestock
                - name: Finance
                - name: Finance > Banking
                - name: Healthcare
                - name: Manufacturing > Machinery
                - name: Retail
                - name: Retail > Apparel & Fashion
                - name: Software
                - name: Software > Business Intelligence
                - name: Wholesalers
                - name: Wholesalers > Durable Goods
                - name: Wholesalers > Non-Durable Goods
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
  /firmographic/revenue:
    get:
      tags:
      - Firmographic
      summary: Returns a list of company revenue attributes.
      description: This endpoint returns a collection of company revenue attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  revenue:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: A name description of the company revenue
              example:
                revenue:
                - name: Large ($100MM-$200MM)
                - name: Medium-Large ($50MM-$100MM)
                - name: Medium-Small ($10MM-$50MM)
                - name: Micro (<$1MM)
                - name: Small ($1MM-$10MM)
                - name: XLarge ($200MM-$1B)
                - name: XXLarge ($1B+)
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
components:
  schemas:
    ErrorMessageResponse:
      type: object
      properties:
        message:
          type:
          - string
          - 'null'
  responses:
    BadRequestError:
      description: The request is syntactically invalid.
    UnprocessableEntityError:
      description: The request body is syntactically correct but semantically incorrect, such as validation errors.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorMessageResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT