Bombora Demographic API

The Demographic API from Bombora — 4 operation(s) for demographic.

Operations 4

GET /demographic/functional-area Returns a list of employee functional areas.
GET /demographic/seniority Returns a list of employee seniority attributes.
GET /demographic/professional-group Returns a list of employee professional group attributes.
GET /demographic/b2b-personas Returns a list of B2B persona 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-demographic-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-demographic-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference Demographic 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: Demographic
paths:
  /demographic/functional-area:
    get:
      tags:
      - Demographic
      summary: Returns a list of employee functional areas.
      description: This endpoint returns a collection of functional area attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  functionalAreas:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The name of the functional area.
              example:
                functionalArea:
                - name: Building & Grounds Maintenance
                - name: Compliance, Governance, and Risk
                - name: Consultants
                - name: Education
                - name: Education > Management & Administrators
                - name: Education > Professors & Teachers
                - name: Engineering
                - name: Engineering > Biomedical
                - name: Marketing
                - name: Marketing > Advertising
                - name: Medical/Health
                - name: Medical/Health > Adolescent Medicine
                - name: Sales
                - name: Sales > Support
                - name: Scientists
                - name: Service Industry
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
  /demographic/seniority:
    get:
      tags:
      - Demographic
      summary: Returns a list of employee seniority attributes.
      description: This endpoint returns a collection of employee seniority attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  seniority:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The name of the seniority.
              example:
                seniority:
                - name: Board and Ownership
                - name: Csuite
                - name: Management
                - name: Non-management
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
  /demographic/professional-group:
    get:
      tags:
      - Demographic
      summary: Returns a list of employee professional group attributes.
      description: This endpoint returns a collection of employee professional group attributes.
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  professionalGroup:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The name of the professional group.
              example:
                professionalGroup:
                - name: Business Professional
                - name: Business Traveler
                - name: Finance Professional
                - name: Fortune 500 Employee
                - name: Healthcare Professional
                - name: High Income Professional
                - name: Human Resources Professional
                - name: IT Professional
                - name: Marketing Professional
                - name: Small Business Professional
        '400':
          $ref: '#/components/responses/BadRequestError'
        '422':
          $ref: '#/components/responses/UnprocessableEntityError'
  /demographic/b2b-personas:
    get:
      tags:
      - Demographic
      summary: Returns a list of B2B persona attributes.
      description: 'This endpoint returns a collection of B2B persona''s which represent demographic attributes and are used to identify employees showing [positive Intent](/docs/intent-api/1/types/Attributes).

        '
      responses:
        '200':
          description: Success - The response body includes the requested resource.
          content:
            application/json:
              schema:
                type: object
                properties:
                  b2bPersonas:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The name of the persona.
              example:
                b2bPersonas:
                - name: Board and Ownership
                - name: Consultants
                - name: C-Suite
                - name: Education
                - name: Engineering
                - name: Finance
                - name: Finance Decision Maker
                - name: Government
                - name: HR Decision Maker
                - name: Human Resources
                - name: Information Technology
                - name: IT Decision Maker
                - name: Legal
                - name: Management
                - name: Marketing
                - name: Marketing Decision Maker
                - name: Operations
                - name: Sales
                - name: Software and Web Development
        '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