Bombora Digital Audience Builder (DAB) API

The Digital Audience Builder (DAB) API API from Bombora — 2 operation(s) for digital audience builder (dab) api.

Operations 4

POST /{dataexchange} Create a digital audience.
GET /{dataexchange}/{externalId}/{partnerId} Get a digital audience.
PUT /{dataexchange}/{externalId}/{partnerId} Update a digital audience.
DELETE /{dataexchange}/{externalId}/{partnerId} Delete a digital audience.

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-digital-audience-builder-dab-api-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-digital-audience-builder-dab-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Digital Audience Builder (DAB) API
  description: 'The Digital Audience Builder (DAB) API provides customers

    the ability to programmatically create and edit custom audiences.


    ### **Security**

    All API endpoints are secured with OAuth 2.0 bearer token authentication. Developers must include a valid Bearer token in the Authorization request header to access endpoints.

    Go to the [Get Started](/get-started) page for additional details.


    ### **Error Handling**

    The API returns appropriate HTTP status codes and error messages in case of unauthorized access (401 Unauthorized) or forbidden actions (403 Forbidden), ensuring secure and reliable interaction.


    ### **Reference Data**

    The API may utilize reference attribute data within a request or response body. See [Reference API](/docs/reference-api/1/overview) for a complete list of supported reference attributes.

    '
  version: v1
servers:
- url: https://api.bombora.com/digital-audiences/v1
security:
- bearerAuth: []
tags:
- name: Digital Audience Builder (DAB) API
paths:
  /{dataexchange}:
    post:
      summary: Create a digital audience.
      description: The Create endpoint allows customers to generate a new DAB custom audience.
      parameters:
      - $ref: '#/components/parameters/dataexchange'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              - endDate
              description: 'Required Fields based on DataExchange.


                * Adobe: `name`,`endDate`,`partnerId`

                * Xandr (AppNexus): `name`,`endDate`,`externalId`,`partnerId`,`cpmPrice`

                * BlueKai: `name`,`endDate`

                * Eyeota: `name`,`endDate`

                * LiveRamp: `name`,`endDate`

                * Lotame: `name`,`endDate`

                * MediaMathDirect: `name`,`endDate`

                * Taboola: `name`,`endDate`

                * theTradeDesk: `name`,`endDate`,`partnerId`,`cpmPrice`

                * Visitor Insights w/ Real Time Capabilities: `name`,`endDate`

                * Test Only: `name`,`endDate`

                * For any data exchange: At least one of the following is required. `topics`,`domains`,`filters`,`surgeId`,`granularInstallData`

                '
              properties:
                externalId:
                  $ref: '#/components/schemas/externalId'
                partnerId:
                  $ref: '#/components/schemas/partnerId'
                cpmPrice:
                  $ref: '#/components/schemas/cpmPrice'
                name:
                  $ref: '#/components/schemas/name'
                endDate:
                  $ref: '#/components/schemas/endDate'
                topics:
                  $ref: '#/components/schemas/topics'
                domains:
                  $ref: '#/components/schemas/domains'
                filters:
                  $ref: '#/components/schemas/filters'
                surgeId:
                  $ref: '#/components/schemas/surgeId'
                granularInstallData:
                  $ref: '#/components/schemas/granularInstallData'
                filterOr:
                  $ref: '#/components/schemas/filterOr'
                entityParty:
                  $ref: '#/components/schemas/entityParty'
            example:
              partnerId: '123'
              externalId: testaudience123
              name: My Test Audience
              endDate: '2021-12-23T19:53:35.984Z'
              topics:
              - '1503561'
              - '1503565'
              filterOr: false
              domains:
              - bombora.com
              - spotify.com
              entityParty: '3'
              filters:
              - id: ccm_industry
                values:
                - Software
              - id: functional_area
                values:
                - Marketing
      responses:
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '409':
          description: Conflict
          content:
            application/json:
              example:
                message: Given External Id is already in use. Please retry with a new External Id.
        '422':
          description: Invalid
          content:
            application/json:
              example:
                errors:
                  cpmPrice:
                  - CPM price 0.25 provided is not supported for eyeota.
                  externalId:
                  - External id containing only numbers, letters, - or _ expected for creating eyeota digital audience.
                message: One or more validation errors occurred.
      tags:
      - Digital Audience Builder (DAB) API
  /{dataexchange}/{externalId}/{partnerId}:
    get:
      summary: Get a digital audience.
      description: The Get endpoint allows users to retrieve an existing Digital Audience.
      parameters:
      - $ref: '#/components/parameters/dataexchange'
      - $ref: '#/components/parameters/externalId'
      - $ref: '#/components/parameters/partnerId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  externalId:
                    $ref: '#/components/schemas/externalId'
                  partnerId:
                    $ref: '#/components/schemas/partnerId'
                  cpmPrice:
                    $ref: '#/components/schemas/cpmPrice'
                  name:
                    $ref: '#/components/schemas/name'
                  endDate:
                    $ref: '#/components/schemas/endDate'
                  topics:
                    $ref: '#/components/schemas/topics'
                  domains:
                    $ref: '#/components/schemas/domains'
                  filters:
                    $ref: '#/components/schemas/filters'
                  surgeId:
                    $ref: '#/components/schemas/surgeId'
                  granularInstallData:
                    $ref: '#/components/schemas/granularInstallData'
                  filterOr:
                    $ref: '#/components/schemas/filterOr'
                  entityParty:
                    $ref: '#/components/schemas/entityParty'
                  status:
                    $ref: '#/components/schemas/status'
              example:
                externalId: audience123
                partnerId: '123'
                name: Example Audience
                endDate: '2021-12-23T19:53:35.984Z'
                filterOr: false
                topics:
                - topic1
                - topic2
                domains:
                - url1.com
                - url2.com
                entityParty: '3'
                surgeId: '123'
                cpmPrice: '1.00'
                filters:
                - id: filter1
                  values:
                  - value1
                - id: filter2
                  values:
                  - value2
                granularInstallData:
                - '10000'
                - '10001'
                - '10002'
                status: ACTIVE
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      tags:
      - Digital Audience Builder (DAB) API
    put:
      summary: Update a digital audience.
      description: "The Edit endpoint allows customers to modify an existing DAB custom audience. \nThis endpoint is a full overwrite of the existing custom audience settings.\n\n* The Last Modified By column for the Digital Audience will be set as DAB API.\n"
      parameters:
      - $ref: '#/components/parameters/dataexchange'
      - $ref: '#/components/parameters/externalId'
      - $ref: '#/components/parameters/partnerId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              - endDate
              description: 'Required Fields based on DataExchange.


                * Adobe: `name`,`endDate`

                * Xandr (AppNexus): `name`,`endDate`,`cpmPrice`

                * BlueKai: `name`,`endDate`

                * Eyeota: `name`,`endDate`

                * LiveRamp: `name`,`endDate`

                * Lotame: `name`,`endDate`

                * MediaMathDirect: `name`,`endDate`

                * Taboola: `name`,`endDate`

                * theTradeDesk: `name`,`endDate`,`cpmPrice`

                * Visitor Insights w/ Real Time Capabilities: `name`,`endDate`

                * Test Only: `name`,`endDate`

                * For any data exchange: At least one of the following is required. `topics`,`domains`,`filters`,`surgeId`,`granularInstallData`

                '
              properties:
                cpmPrice:
                  $ref: '#/components/schemas/cpmPrice'
                name:
                  $ref: '#/components/schemas/name'
                endDate:
                  $ref: '#/components/schemas/endDate'
                topics:
                  $ref: '#/components/schemas/topics'
                domains:
                  $ref: '#/components/schemas/domains'
                filters:
                  $ref: '#/components/schemas/filters'
                surgeId:
                  $ref: '#/components/schemas/surgeId'
                granularInstallData:
                  $ref: '#/components/schemas/granularInstallData'
                filterOr:
                  $ref: '#/components/schemas/filterOr'
                entityParty:
                  $ref: '#/components/schemas/entityParty'
            example:
              name: My Test Audience
              endDate: '2021-12-27T19:53:35.984Z'
              topics:
              - '1503561'
              filterOr: false
              domains:
              - bombora.com
              - spotify.com
              entityParty: '3'
              filters:
              - id: ccm_industry
                values:
                - Software
              - id: functional_area
                values:
                - Marketing
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              example:
                errors:
                  filters:
                  - Filters are expected to have both an id and a list of values.
                message: One or more validation errors occurred.
      tags:
      - Digital Audience Builder (DAB) API
    delete:
      summary: Delete a digital audience.
      description: The Delete endpoint allows users to delete an existing Digital Audience.
      parameters:
      - $ref: '#/components/parameters/dataexchange'
      - $ref: '#/components/parameters/externalId'
      - $ref: '#/components/parameters/partnerId'
      responses:
        '200':
          description: The resource no longer exists.
        '204':
          description: No Content
      tags:
      - Digital Audience Builder (DAB) API
components:
  schemas:
    externalId:
      type: string
      description: "Unique identifier to associate with this segment.\n\n* Only letters, numbers, dashes `-`, and underscores `_` are accepted. \n* If MediaMathDirect, must be a numeric value with 7 or more digits.\n"
    ccm_company_size:
      type: object
      properties:
        id:
          type: string
          enum:
          - ccm_company_size
        values:
          type: array
          description: "The following values are allowed.\n\n `Large (1,000 - 4,999 Employees)`,`Medium (200 - 499 Employees)`,`Medium-Large (500 - 999 Employees)`,`Medium-Small (50 - 199 Employees)`,`Micro (1 - 9 Employees)`,`Small (10 - 49 Employees)`,`XLarge (5,000 - 10,000 Employees)`,`XXLarge (10,000+ Employees)`\n"
          items:
            type: string
            enum:
            - Large (1,000 - 4,999 Employees)
            - Medium (200 - 499 Employees)
            - Medium-Large (500 - 999 Employees)
            - Medium-Small (50 - 199 Employees)
            - Micro (1 - 9 Employees)
            - Small (10 - 49 Employees)
            - XLarge (5,000 - 10,000 Employees)
            - XXLarge (10,000+ Employees)
      required:
      - id
      - values
    state:
      type: object
      properties:
        id:
          type: string
          enum:
          - state
        values:
          type: array
          description: "The following values are allowed.\n\n `AB`,`Alabama`,`Alaska`,`Arizona`,`Arkansas`,`BC`,`California`,`Colorado`,`Connecticut`,`Delaware`,`District of Columbia`,`Florida`,`Georgia`,`Hawaii`,`Idaho`,`Illinois`,`Indiana`,`Iowa`,`Kansas`,`Kentucky`,`Louisiana`,`MB`,`Maine`,`Maryland`,`Massachusetts`,`Michigan`,`Minnesota`,`Mississippi`,`Missouri`,`Montana`,`NB`,`NL`,`NS`,`NT`,`NU`,`Nebraska`,`Nevada`,`New Hampshire`,`New Jersey`,`New Mexico`,`New York`,`North Carolina`,`North Dakota`,`ON`,`Ohio`,`Oklahoma`,`Oregon`,`PE`,`Pennsylvania`,`QC`,`Rhode Island`,`SK`,`South Carolina`,`South Dakota`,`Tennessee`,`Texas`,`Utah`,`Vermont`,`Virginia`,`Washington`,`West Virginia`,`Wisconsin`,`Wyoming`,`YT`\n"
          items:
            type: string
            enum:
            - AB
            - Alabama
            - Alaska
            - Arizona
            - Arkansas
            - BC
            - California
            - Colorado
            - Connecticut
            - Delaware
            - District of Columbia
            - Florida
            - Georgia
            - Hawaii
            - Idaho
            - Illinois
            - Indiana
            - Iowa
            - Kansas
            - Kentucky
            - Louisiana
            - MB
            - Maine
            - Maryland
            - Massachusetts
            - Michigan
            - Minnesota
            - Mississippi
            - Missouri
            - Montana
            - NB
            - NL
            - NS
            - NT
            - NU
            - Nebraska
            - Nevada
            - New Hampshire
            - New Jersey
            - New Mexico
            - New York
            - North Carolina
            - North Dakota
            - true
            - Ohio
            - Oklahoma
            - Oregon
            - PE
            - Pennsylvania
            - QC
            - Rhode Island
            - SK
            - South Carolina
            - South Dakota
            - Tennessee
            - Texas
            - Utah
            - Vermont
            - Virginia
            - Washington
            - West Virginia
            - Wisconsin
            - Wyoming
            - YT
      required:
      - id
      - values
    status:
      type: string
      description: Status of the audience
      enum:
      - Pending
      - Active
      - Suspended
    intent_category:
      type: object
      properties:
        id:
          type: string
          enum:
          - intent_category
        values:
          type: array
          description: "The following values are allowed.\n\n `Accounting`,`Administration`,`Agencies & Branding`,`Application & Software Development`,`Benefits`,`Budgeting, Planning & Strategy`,`Business Analytics & Applications`,`CRM & Marketing Automation`,`Capital Procurement`,`Cloud Computing`,`Compliance & Governance`,`Computers & Laptops`,`Construction Management`,`Content`,`Corporate Finance`,`Creativity Software`,`Data Centers`,`Databases & Storage`,`Demand Generation`,`Disease Control`,`Diversity`,`Email Marketing`,`Emissions`,`Employee Services`,`Finance IT`,`Gadgets & Wearables`,`Graphics, Multimedia & Web design`,`Green Energy`,`Hardware`,`Health Insurance`,`Health Tech`,`IT Administration`,`Legal & Regulatory`,`Materials`,`Medical Research`,`Mobility & Wireless`,`Networking & VOIP`,`Online Advertising`,`Operating Systems`,`Patient Management`,`Payroll & Compensation`,`Performance`,`Personal Finance`,`Personal Protective Equipment`,`Plant Management`,`Policy & Culture`,`Productivity Software`,`Programmatic Advertising`,`Recruitment, Hiring & Onboarding`,`Renewables`,`Sales`,`Search Marketing`,`Security`,`Servers`,`Smartphone & Mobile`,`Social Networks`,`Strategy & Analysis`,`Supply Chain`,`Tablets & Readers`,`Tools & Electronics`,`Trading & Investing`,`Training & Development`,`Virtualization`,`Website Publishing`\n"
          items:
            type: string
            enum:
            - Accounting
            - Administration
            - Agencies & Branding
            - Application & Software Development
            - Benefits
            - Budgeting, Planning & Strategy
            - Business Analytics & Applications
            - CRM & Marketing Automation
            - Capital Procurement
            - Cloud Computing
            - Compliance & Governance
            - Computers & Laptops
            - Construction Management
            - Content
            - Corporate Finance
            - Creativity Software
            - Data Centers
            - Databases & Storage
            - Demand Generation
            - Disease Control
            - Diversity
            - Email Marketing
            - Emissions
            - Employee Services
            - Finance IT
            - Gadgets & Wearables
            - Graphics, Multimedia & Web design
            - Green Energy
            - Hardware
            - Health Insurance
            - Health Tech
            - IT Administration
            - Legal & Regulatory
            - Materials
            - Medical Research
            - Mobility & Wireless
            - Networking & VOIP
            - Online Advertising
            - Operating Systems
            - Patient Management
            - Payroll & Compensation
            - Performance
            - Personal Finance
            - Personal Protective Equipment
            - Plant Management
            - Policy & Culture
            - Productivity Software
            - Programmatic Advertising
            - Recruitment, Hiring & Onboarding
            - Renewables
            - Sales
            - Search Marketing
            - Security
            - Servers
            - Smartphone & Mobile
            - Social Networks
            - Strategy & Analysis
            - Supply Chain
            - Tablets & Readers
            - Tools & Electronics
            - Trading & Investing
            - Training & Development
            - Virtualization
            - Website Publishing
      required:
      - id
      - values
    install_data:
      type: object
      properties:
        id:
          type: string
          enum:
          - install_data
        values:
          type: array
          description: "The following values are allowed.\n\n `Cloud Services > Cloud Infrastructure Computing`,`Cloud Services > Infrastructure as a Service (IaaS)`,`Cloud Services > Platform as a Service (PaaS)`,`Communications Technologies > Mobile Enterprise Management`,`Communications Technologies > Telephony`,`Customer Relationship Management > Contact Center Management`,`Customer Relationship Management > Customer Relationship Management (CRM)`,`Customer Relationship Management > Help Desk Management`,`Data Center Solutions > Data Archiving Back-Up & Recovery`,`Data Center Solutions > Data Management & Storage (Hardware)`,`Data Center Solutions > Database Management Software`,`Data Center Solutions > Disaster Recovery (DR)`,`Data Center Solutions > IT Infrastructure & Operations Management`,`Data Center Solutions > Security Information and Event Management (SIEM)`,`Data Center Solutions > System Analytics & Monitoring`,`Data Center Solutions > System Security Services`,`Enterprise Applications > Business Process Management (BPM)`,`Enterprise Applications > Commerce`,`Enterprise Applications > Enterprise Business Solutions (EBS)`,`Enterprise Applications > Enterprise Performance Management (EPM)`,`Enterprise Applications > Enterprise Resource Planning (ERP)`,`Enterprise Applications > HR Management Systems (HRMS)/Human Capital Management (HCM)`,`Enterprise Applications > Inventory Management`,`Enterprise Applications > Partner Management`,`Enterprise Applications > Procurement`,`Enterprise Applications > Supplier Relationship Management (SRM)`,`Enterprise Applications > Supply Chain Management (SCM)`,`Enterprise Content > Case Management`,`Enterprise Content > Enterprise Content Management (ECM)`,`Enterprise Content > Information Technology Management`,`Enterprise Content > Product Lifecycle Management (PLM)`,`Hardware (Basic) > Mainframe Computers`,`Hardware (Basic) > Server Technologies (Hardware)`,`IT Governance > Application Development & Management`,`IT Governance > Software Configuration Management (SCM)`,`Marketing Performance Management > Business Intelligence`,`Marketing Performance Management > Marketing Performance Measurement`,`Network Computing > Middleware Software`,`Network Computing > Network Management (Hardware)`,`Network Computing > Network Management (Software)`,`Productivity Solutions > Collaboration`,`Productivity Solutions > Productivity Solutions`,`Software (Basic) > Server Technologies (Software)`,`Vertical Markets > Construction`,`Vertical Markets > Manufacturing/Engineering`,`Web-Oriented Architecture > Hypervisor`,`Web-Oriented Architecture > Remote Computer/Server Solutions`,`Web-Oriented Architecture > Virtualization: Application & Desktop`,`Web-Oriented Architecture > Virtualization: Platform Management`,`Web-Oriented Architecture > Virtualization: Server & Data Center`,`Web-Oriented Architecture > Web & Portal Technology`,`Web-Oriented Architecture > Web Content Management System (WCMS)`\n"
          items:
            type: string
            enum:
            - Cloud Services > Cloud Infrastructure Computing
            - Cloud Services > Infrastructure as a Service (IaaS)
            - Cloud Services > Platform as a Service (PaaS)
            - Communications Technologies > Mobile Enterprise Management
            - Communications Technologies > Telephony
            - Customer Relationship Management > Contact Center Management
            - Customer Relationship Management > Customer Relationship Management (CRM)
            - Customer Relationship Management > Help Desk Management
            - Data Center Solutions > Data Archiving Back-Up & Recovery
            - Data Center Solutions > Data Management & Storage (Hardware)
            - Data Center Solutions > Database Management Software
            - Data Center Solutions > Disaster Recovery (DR)
            - Data Center Solutions > IT Infrastructure & Operations Management
            - Data Center Solutions > Security Information and Event Management (SIEM)
            - Data Center Solutions > System Analytics & Monitoring
            - Data Center Solutions > System Security Services
            - Enterprise Applications > Business Process Management (BPM)
            - Enterprise Applications > Commerce
            - Enterprise Applications > Enterprise Business Solutions (EBS)
            - Enterprise Applications > Enterprise Performance Management (EPM)
            - Enterprise Applications > Enterprise Resource Planning (ERP)
            - Enterprise Applications > HR Management Systems (HRMS)/Human Capital Management (HCM)
            - Enterprise Applications > Inventory Management
            - Enterprise Applications > Partner Management
            - Enterprise Applications > Procurement
            - Enterprise Applications > Supplier Relationship Management (SRM)
            - Enterprise Applications > Supply Chain Management (SCM)
            - Enterprise Content > Case Management
            - Enterprise Content > Enterprise Content Management (ECM)
            - Enterprise Content > Information Technology Management
            - Enterprise Content > Product Lifecycle Management (PLM)
            - Hardware (Basic) > Mainframe Computers
            - Hardware (Basic) > Server Technologies (Hardware)
            - IT Governance > Application Development & Management
            - IT Governance > Software Configuration Management (SCM)
            - Marketing Performance Management > Business Intelligence
            - Marketing Performance Management > Marketing Performance Measurement
            - Network Computing > Middleware Software
            - Network Computing > Network Management (Hardware)
            - Network Computing > Network Management (Software)
            - Productivity Solutions > Collaboration
            - Productivity Solutions > Productivity Solutions
            - Software (Basic) > Server Technologies (Software)
            - Vertical Markets > Construction
            - Vertical Markets > Manufacturing/Engineering
            - Web-Oriented Architecture > Hypervisor
            - Web-Oriented Architecture > Remote Computer/Server Solutions
            - Web-Oriented Architecture > Virtualization: Application & Desktop
            - Web-Oriented Architecture > Virtualization: Platform Management
            - Web-Oriented Architecture > Virtualization: Server & Data Center
            - Web-Oriented Architecture > Web & Portal Technology
            - Web-Oriented Architecture > Web Content Management System (WCMS)
      required:
      - id
      - values
    endDate:
      type: string
      format: date-time
      description: "Date when the audience is suspended. \n* Must be no more than 13 months in the future.\n"
    filterOr:
      type: boolean
      default: false
      description: "Combine filter conditions with OR \n* `\"Show me user profiles in finance or located in Japan\"`\n"
    ccm_industry:
      type: object
      properties:
        id:
          type: string
          enum:
          - ccm_industry
        values:
          type: array
          description: "The following values are allowed.\n\n `Agriculture`,`Agriculture > Animals & Livestock`,`Agriculture > Crops`,`Agriculture > Forestry`,`Business Services`,`Business Services > Accounting`,`Business Services > Advertising & Marketing`,`Business Services > Commercial Printing`,`Business Services > Graphic Design`,`Business Services > HR & Recruiting`,`Business Services > Import/Export`,`Business Services > Management Consulting`,`Business Services > Waste Management`,`Construction`,`Construction > Architecture`,`Construction > Commercial Building`,`Construction > Contractors`,`Construction > Heavy Construction`,`Construction > Residential Building`,`Consumer Services`,`Consumer Services > Auto Repair`,`Consumer Services > Car Rental`,`Consumer Services > Laundry & Dry Cleaning`,`Consumer Services > Non-Auto Repair`,`Consumer Services > Veterinary`,`Consumer Services > Weight Health Management`,`Cultural`,`Cultural > Libraries`,`Cultural > Museums & Art Galleries`,`Cultural > Performance Arts`,`Education`,`Education > Colleges & Universities`,`Education > K-12 Schools`,`Education > Professional, Technical & Trade Schools`,`Energy, Utilities & Waste`,`Energy, Utilities & Waste > Energy`,`Energy, Utilities & Waste > Utilities`,`Energy, Utilities & Waste > Waste Treatment`,`Finance`,`Finance > Banking`,`Finance > Credit Card Transaction Processing`,`Finance > Investment Banking`,`Finance > Portfolio Management & Financial Advice`,`Finance > Trade & Development`,`Finance > Venture Capital Private Equity & Fund Raising`,`Gaming`,`Government`,`Government > Federal`,`Government > Public Safety`,`Government > State & Province`,`Government > Towns, Cities & Municipalities`,`Healthcare`,`Healthcare > Hospitals & Clinics`,`Healthcare > Medical Offices`,`Healthcare > Pharmaceuticals`,`Hospitality & Hotels`,`Hospitality & Hotels > Lodging & Resorts`,`Hospitality & Hotels > Restaurants`,`Insurance`,`Insurance > Accident & Health`,`Insurance > Property & Casualty`,`Legal`,`Manufacturing`,`Manufacturing > Aerospace & Defense`,`Manufacturing > Automobile`,`Manufacturing > Boats & Marine`,`Manufacturing > Building Materials`,`Manufacturing > Chemicals & Gases`,`Manufacturing > Computer Equipment`,`Manufacturing > Consumer Goods`,`Manufacturing > Electronics`,`Manufacturing > Food & Beverage`,`Manufacturing > Furniture`,`Manufacturing > Industrial Engineering`,`Manufacturing > Machinery`,`Manufacturing > Metals & Mining`,`Manufacturing > Plastics, Synthetics & Rubber`,`Manufacturing > Semiconductors`,`Manufacturing > Textiles & Apparel`,`Manufacturing > Wood & Paper Products`,`Media & Internet`,`Media & Internet > Info Collection & Delivery`,`Media & Internet > Media Broadcasting`,`Media & Internet > Movie & Video`,`Media & Internet > Music`,`Media & Internet > Newspapers & News Services`,`Media & Internet > Publishing`,`Media & Internet > Search Engines & Internet Portals`,`Military`,`Non-Profit`,`Real Estate`,`Real Estate > Commercial`,`Real Estate > Residential`,`Recreation`,`Resource Extraction`,`Resource Extraction > Metals & Mining`,`Resource Extraction > Oil & Gas`,`Retail`,`Retail > Apparel & Fashion`,`Retail > Consumer Electronics`,`Retail > Department Stores & Super Stores`,`Retail > Drug Stores & Pharmacies`,`Retail > Furniture`,`Retail > Gas Stations & Convenience`,`Retail > Grocery`,`Retail > Home Improvement & Hardware`,`Retail > Jewelry`,`Retail > Motor Vehicles`,`Retail > Office Products`,`Retail > Pet Products`,`Retail > eCommerce`,`Software`,`Software > Business Intelligence`,`Software > Database & File Management`,`Software > Financial/Legal/HR`,`Software > Healthcare`,`Software > Security`,`Sports`,`Telecommunications`,`Telecommunications > Cable & Satellite`,`Telecommunications > ISPs`,`Telecommunications > Telephony & Wireless`,`Transportation & Travel`,`Transportation & Travel > Aviation & Aerospace`,`Transportation & Travel > Marine Shipping`,`Transportation & Travel > Transit & Non-Aviation Passengers`,`Transportation & Travel > Travel Agencies & Reservation Services`,`Transportation & Travel > Trucking & Logistics`,`Transportation & Travel > Warehousing`,`Wholesalers`,`Wholesalers > Durable Goods`,`Wholesalers > Non-Durable Goods`\n"
          items:
            type: string
            enum:
            - Agriculture
            - Agriculture > Animals & Livestock
            - Agriculture > Crops
            - Agriculture > Forestry
            - Business Services
            - Business Services > Accounting
            - Business Services > Advertising & Marketing
            - Business Services > Commercial Printing
            - Business Services > Graphic Design
            - Business Services > HR & Recruiting
            - Business Services > Import/Export
            - Business Services > Management Consulting
            - Business Services > Waste Management
            - Construction
            - Construction > Architecture
            - Construction > Commercial Building
            - Construction > Contractors
            - Construction > Heavy Construction
            - Construction > Residential Building
            - Consumer Services
            - Consumer Services > Auto Repair
            - Consumer Services > Car Rental
            - Consumer Services > Laundry & Dry Cleaning
            - Consumer Services > Non-Auto Repair
            - Consumer Services > Veterinary
            - Consumer Services > Weight Health Management
            - Cultural
            - Cultural > Libraries
            - Cultural > Museums & Art Galleries
            - Cultural > Performance Arts
            - Education
            - Education > Colleges & Universities
            - Education > K-12 Schools
            - Education > Professional, Technical & Trade Schools
            - Energy, Utilities & Waste
            - Energy, Utilities & Waste > Energy
            - Energy, Utilities & Waste > Utilities
            - Energy, Utilities & Waste > Waste Treatment
            - Finance
            - Finance > Banking
            - Finance > Credit Card Transaction Processing
            - Finance > Investment Banking
            - Finance > Portfolio Management & Financial Advice
            - Finance > Trade & Development
            - Finance > Venture Capital Private Equity & Fund Raising
            - Gaming
            - Government
            - Government > Federal
            - Government > Public Safety
            - Gover

# --- truncated at 32 KB (62 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bombora/refs/heads/main/openapi/bombora-digital-audience-builder-dab-api-api-openapi.yml