Explorium V2 Businesses API

Match, fetch, and stat over the company dataset on the v2 (beta) surface, where bulk and single input share one endpoint.

OpenAPI Specification

explorium-v2businesses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Partner Service V2 Businesses API
  version: 0.3.19
servers:
- url: https://api.explorium.ai
  description: AgentSource Server
tags:
- name: V2Businesses
paths:
  /v2/businesses/match:
    post:
      tags:
      - V2Businesses
      summary: Match Businesses
      operationId: v2_businesses_match
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesMatchRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesMatchResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
  /v2/businesses:
    post:
      tags:
      - V2Businesses
      summary: Fetch Businesses
      operationId: v2_businesses_fetch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/V2BusinessesFetchRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesFetchResponseV2'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
  /v2/businesses/stats:
    post:
      tags:
      - V2Businesses
      summary: Fetch Stats
      operationId: v2_businesses_stats
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/V2BusinessesStatsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesStatsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
components:
  schemas:
    BusinessesEventIdentifier:
      type: string
      enum:
      - ipo_announcement
      - new_funding_round
      - new_investment
      - new_product
      - new_office
      - closing_office
      - new_partnership
      - increase_in_engineering_department
      - increase_in_sales_department
      - increase_in_marketing_department
      - increase_in_operations_department
      - increase_in_customer_service_department
      - increase_in_all_departments
      - decrease_in_engineering_department
      - decrease_in_sales_department
      - decrease_in_marketing_department
      - decrease_in_operations_department
      - decrease_in_customer_service_department
      - decrease_in_all_departments
      - employee_joined_company
      - hiring_in_creative_department
      - hiring_in_education_department
      - hiring_in_engineering_department
      - hiring_in_finance_department
      - hiring_in_health_department
      - hiring_in_human_resources_department
      - hiring_in_legal_department
      - hiring_in_marketing_department
      - hiring_in_operations_department
      - hiring_in_professional_service_department
      - hiring_in_sales_department
      - hiring_in_support_department
      - hiring_in_trade_department
      - hiring_in_unknown_department
      - company_award
      - outages_and_security_breaches
      - cost_cutting
      - merger_and_acquisitions
      - lawsuits_and_legal_issues
      title: BusinessesEventIdentifier
      description: 'Enumeration of business-related event identifiers.


        This enum defines various types of events associated with businesses, such as:

        - Financial activities (e.g., IPO announcements, new funding rounds, new investments)

        - Organizational changes (e.g., new offices, closing offices, mergers and acquisitions)

        - Workforce trends (e.g., hiring in specific departments, increases or decreases in department sizes)

        - Product and partnership updates (e.g., new products, new partnerships)

        - Other significant events (e.g., company awards, outages, cost-cutting measures, legal issues)


        These identifiers are used to categorize and track business events within the application.'
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    BaseFetchMode:
      type: string
      enum:
      - full
      - preview
      title: BaseFetchMode
      description: "The `BaseFetchMode` class is an enumeration that defines the modes for fetching data.\n\nThis enum is used to specify whether the fetch operation should retrieve the full data\nor just a preview of the data. It ensures consistent handling of fetch modes across\nthe application.\n\nAttributes:\n    FULL: Fetch the complete data.\n    PREVIEW: Fetch a preview or partial data."
    CompanyAgeRange:
      type: string
      enum:
      - 0-3
      - 3-6
      - 6-10
      - 10-20
      - 20+
      title: CompanyAgeRange
      description: 'The `CompanyAgeRange` class is an enumeration that inherits from `BaseFilterEnum`.


        It represents predefined ranges for the age of a company, such as "0-3 years" or "20+ years".

        This enum is used to categorize companies based on their age, ensuring consistent filtering

        and comparison across the application. Each range is defined as a string value for easy

        conversion and usage.'
    RequestStatus:
      type: string
      enum:
      - success
      - miss
      - failure
      title: RequestStatus
      description: "The `RequestStatus` class is an enumeration that defines the possible statuses of a request.\n\nThis enum is used to indicate whether a request was successful, missed, or failed. It ensures\nconsistent handling of request statuses across the application.\n\nAttributes:\n    SUCCESS: Indicates that the request was successfully processed.\n    MISS: Indicates that the request did not find any matching data.\n    FAILURE: Indicates that the request encountered an error or failure."
    BusinessIntentTopicsIntentLevel:
      enum:
      - emerging_intent
      - high_intent
      - very_high_intent
      title: BusinessIntentTopicsIntentLevel
      description: An enumeration.
    BusinessesFetchResponseV2:
      properties:
        response_context:
          $ref: '#/components/schemas/ResponseContext'
        data:
          items:
            $ref: '#/components/schemas/Business'
          type: array
          title: Data
          description: List of businesses that match the filters.
          default: []
        total_results:
          type: integer
          minimum: 0.0
          title: Total Results
          description: The total number of businesses that match the filters.
          default: 0
        page:
          allOf:
          - $ref: '#/components/schemas/partner_service__models__services__requests__PageInfo'
          title: Page
          description: Page information including size and next cursor
      type: object
      required:
      - response_context
      - page
      title: BusinessesFetchResponseV2
      description: This is base response model for all responses in partner service.
    IncludesFilter_StandardizedText_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            type: string
          type: array
          title: Values
      additionalProperties: false
      type: object
      required:
      - values
      title: IncludesFilter[StandardizedText]
    NumberOfLocations:
      type: string
      enum:
      - 0-1
      - 2-5
      - 6-20
      - 21-50
      - 51-100
      - 101-1000
      - 1001+
      title: NumberOfLocations
      description: The `NumberOfLocations` class is an enumeration that represents predefined ranges
    ExistsFilter:
      properties:
        negate:
          type: boolean
          title: Negate
        value:
          type: boolean
          title: Value
      additionalProperties: false
      type: object
      required:
      - value
      title: ExistsFilter
    IncludesFilter_CompanyAgeRange_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            $ref: '#/components/schemas/CompanyAgeRange'
          type: array
      additionalProperties: false
      type: object
      required:
      - values
      title: IncludesFilter[CompanyAgeRange]
    NumberOfEmployeesRange:
      type: string
      enum:
      - 1-10
      - 11-50
      - 51-200
      - 201-500
      - 501-1000
      - 1001-5000
      - 5001-10000
      - 10001+
      title: NumberOfEmployeesRange
      description: 'The `NumberOfEmployeesRange` class is an enumeration that represents predefined ranges

        for the number of employees in a company. These ranges are used for filtering and

        categorizing companies based on their workforce size.'
    RevenueRange:
      type: string
      enum:
      - 0-500K
      - 500K-1M
      - 1M-5M
      - 5M-10M
      - 10M-25M
      - 25M-75M
      - 75M-200M
      - 200M-500M
      - 500M-1B
      - 1B-10B
      - 10B-100B
      - 100B-1T
      - 1T-10T
      - 10T+
      title: RevenueRange
      description: The `RevenueRange` class is an enumeration that represents predefined ranges for the revenue of a company.
    BusinessesStats:
      properties:
        business_categories_per_location:
          type: object
          title: Business Categories Per Location
        revenue_per_category:
          type: object
          title: Revenue Per Category
        number_of_employees_per_category:
          type: object
          title: Number Of Employees Per Category
      type: object
      title: BusinessesStats
    BusinessesMatchRequest:
      properties:
        request_context:
          type: object
          title: Request Context
          marked_for_null_replacement: true
          nullable: true
        businesses_to_match:
          items:
            $ref: '#/components/schemas/BusinessMatchInput'
          type: array
          maxItems: 50
          minItems: 1
          title: Businesses To Match
      additionalProperties: false
      type: object
      required:
      - businesses_to_match
      title: BusinessesMatchRequest
    BusinessesStatsResponse:
      properties:
        response_context:
          $ref: '#/components/schemas/ResponseContext'
        total_results:
          type: integer
          title: Total Results
        stats:
          $ref: '#/components/schemas/BusinessesStats'
      type: object
      required:
      - response_context
      - total_results
      - stats
      title: BusinessesStatsResponse
      description: This is base response model for all responses in partner service.
    BusinessMatchInput:
      properties:
        name:
          type: string
          maxLength: 256
          title: Name
        domain:
          type: string
          title: Domain
        url:
          type: string
          title: Url
        linkedin_url:
          type: string
          title: Linkedin Url
      type: object
      title: BusinessMatchInput
    IncludesFilter_NAICS_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            type: string
            pattern: ^\d{2,6}$
          type: array
          title: Values
      additionalProperties: false
      type: object
      required:
      - values
      title: IncludesFilter[NAICS]
    partner_service__models__services__requests__PageInfo:
      properties:
        size:
          type: integer
          title: Size
          description: Number of results in this page
        next_cursor:
          type: string
          title: Next Cursor
          description: Cursor for pagination. Use this value as cursor in the next request.
      type: object
      required:
      - size
      title: PageInfo
    ResponseContext:
      properties:
        correlation_id:
          type: string
          title: Correlation Id
        request_status:
          $ref: '#/components/schemas/RequestStatus'
        time_took_in_seconds:
          type: number
          title: Time Took In Seconds
      type: object
      required:
      - correlation_id
      - request_status
      - time_took_in_seconds
      title: ResponseContext
    V2BusinessesFetchFilters:
      properties:
        business_id:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_BusinessId_'
          title: Business ID
          description: Filter businesses by specific Explorium business IDs
          example:
            values:
            - 8adce3ca1cef0c986b22310e369a0793
            - 340c8040bd50cbab9c7df718bbe51cc9
          nullable: true
        country_code:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_CountryCodeAlpha2_'
          title: Country Code
          description: A two-letter country code (ISO Alpha-2 format).
          example:
            values:
            - US
            - CA
          nullable: true
        region_country_code:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_RegionCode_'
          title: Region Country Code
          description: 'Filter prospects by region using ISO 3166-2 codes. Example: [us-ut, us-ca].'
          example:
            values:
            - US-CA
            - IL-TA
          nullable: true
        company_size:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_NumberOfEmployeesRange_'
          title: Company Size
          description: 'Filter accounts by the number of employees at all company sites. Categories: [1-10, 11-50, ..., 10001+].'
          example:
            values:
            - 1-10
            - 11-50
            - 51-200
            - 201-500
            - 501-1000
            - 1001-5000
            - 5001-10000
            - 10001+
          nullable: true
        company_revenue:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_RevenueRange_'
          title: Company Revenue
          description: 'Filter by company’s annual revenue. Options: [0-500K, 500K-1M, ..., 10B-100B].'
          example:
            values:
            - 0-500K
            - 500K-1M
            - 1M-5M
            - 5M-10M
            - 10M-25M
            - 25M-75M
            - 75M-200M
            - 200M-500M
            - 500M-1B
            - 1B-10B
            - 10B-100B
            - 100B-1T
            - 1T-10T
            - 10T+
          nullable: true
        company_age:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_CompanyAgeRange_'
          title: Company Age
          description: 'Filter accounts by how many years since they were established. Categories: [0-3, 3-6, ..., 20+].'
          example:
            values:
            - 0-3
            - 3-6
            - 6-10
            - 10-20
            - 20+
          nullable: true
        google_category:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_StandardizedText_'
          title: Google Category
          description: 'Filter by company’s Google business category. Example: [Paving contractor, Retail].'
          example:
            values:
            - Retail
          nullable: true
        naics_category:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_NAICS_'
          title: NAICS Category
          description: 'Filter accounts by their 2017 NAICS industry code. Example: [23, 5611].'
          example:
            values:
            - '541512'
          nullable: true
        linkedin_category:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_StandardizedText_'
          title: LinkedIn Category
          description: 'Filter accounts by their classified LinkedIn business category. Example: [software development, investment banking].'
          example:
            values:
            - Market research
          nullable: true
        company_tech_stack_category:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_Text_'
          title: Company Tech Stack Category
          description: 'Filter accounts by the technology categories they use. Example: [Marketing, CRM, Cloud Services].'
          example:
            values:
            - Business Intelligence And Analytics
            - Devops And Development
          nullable: true
        company_tech_stack_tech:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_Text_'
          title: Company Tech Stack Tech
          description: 'Filter accounts by the specific technologies they use. Example: [JavaScript, HTML5, Apache].'
          example:
            values:
            - JavaScript
            - HTML5
            - Apache
          nullable: true
        company_name:
          allOf:
          - $ref: '#/components/schemas/DynamicIncludesFilter_OrganizationName_'
          title: Company Name
          description: 'Filter accounts by specific company names. Example: [Microsoft, Walmart].'
          example:
            values:
            - Microsoft
            - Google
          nullable: true
        number_of_locations:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_NumberOfLocations_'
          title: Number of Locations
          description: 'Filter accounts by how many office locations they operate. Example: [1, 2-5, 6+].'
          example:
            values:
            - 0-1
            - 2-5
            - 6-20
            - 21-50
            - 51-100
            - 101-1000
            - 1001+
          nullable: true
        city_region_country:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_Text_'
          title: City Region Country
          description: 'Filter accounts by geographic region, down to city-level granularity. Example: [San Francisco, CA, US].'
          example:
            values:
            - Paris, FR
            - Tel Aviv, IL
            - Miami, FL, US
          nullable: true
        city_region:
          allOf:
          - $ref: '#/components/schemas/IncludesFilter_Text_'
          title: City Region
          description: 'Filter accounts by geographic region, down to city-level granularity. Example: [New York--Jersey City--Newark, NY--NJ].'
          example:
            values:
            - New York--Jersey City--Newark, NY--NJ
            - Los Angeles--Long Beach--Anaheim, CA
            - Chicago, IL--IN
          nullable: true
        website_keywords:
          allOf:
          - $ref: '#/components/schemas/AnyMatchPhraseFilter_Text_'
          title: Website Keywords
          description: 'Filter accounts by exact phrases mentioned on their websites. Example: [summer camp, machine learning]'
          example:
            values:
            - summer camp
            - machine learning
          nullable: true
        business_intent_topics:
          allOf:
          - $ref: '#/components/schemas/BusinessIntentTopicsFilter'
          title: Business Intent Topics
          description: Filter accounts by intent data topics with composite score levels. Automatically expands to include bucket suffixes (_low, _medium, _high).
          example:
            topics:
            - Security:Cloud Security
            - HR:Employee Benefits
            - Smartphones:iPhone
            topic_intent_level: high_intent
          nullable: true
        events:
          allOf:
          - $ref: '#/components/schemas/EventTypesFilter_BusinessesEventIdentifier_'
          title: Events
          description: Filter businesses by specific event types they have experienced. Optionally filter by when events occurred using last_occurrence (days).
          example:
            values:
            - increase_in_all_departments
            last_occurrence: 90
          nullable: true
        has_website:
          allOf:
          - $ref: '#/components/schemas/ExistsFilter'
          title: Has Website
          description: 'Filter businesses by whether they have a website. Categories: [True, False]'
          example:
            value: true
          nullable: true
        is_public_company:
          allOf:
          - $ref: '#/components/schemas/ExistsFilter'
          title: Is Public Company
          description: Filter businesses by whether they are publicly traded (have a stock ticker).
          example:
            value: true
          nullable: true
        include_operating_locations:
          allOf:
          - $ref: '#/components/schemas/ExistsFilter'
          title: Include Operating Locations
          description: When true, location filters also apply to operating locations. Defaults to false.
          example:
            value: false
          nullable: true
      additionalProperties: false
      type: object
      title: V2BusinessesFetchFilters
      example: {}
    IncludesFilter_Text_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            type: string
          type: array
          title: Values
      additionalProperties: false
      type: object
      required:
      - values
      title: IncludesFilter[Text]
    BusinessMatchOutputWithErrors:
      properties:
        input:
          $ref: '#/components/schemas/BusinessMatchInput'
        business_id:
          type: string
          pattern: ^[a-f0-9]{32}$
          title: Business Id
        error:
          type: string
          title: Error
        error_type:
          type: string
          title: Error Type
      type: object
      required:
      - error
      - error_type
      title: BusinessMatchOutputWithErrors
    EventTypesFilter_BusinessesEventIdentifier_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            $ref: '#/components/schemas/BusinessesEventIdentifier'
          type: array
        last_occurrence:
          type: integer
          title: Last Occurrence Days
          description: Filter events that occurred within the last N days (required)
          example: 90
      additionalProperties: false
      type: object
      required:
      - values
      - last_occurrence
      title: EventTypesFilter[BusinessesEventIdentifier]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BusinessIntentTopicsFilter:
      properties:
        negate:
          type: boolean
          title: Negate
        topics:
          items:
            type: string
          type: array
          minItems: 1
          title: Topics
        topic_intent_level:
          allOf:
          - $ref: '#/components/schemas/BusinessIntentTopicsIntentLevel'
          nullable: true
      additionalProperties: false
      type: object
      required:
      - topics
      title: BusinessIntentTopicsFilter
    BusinessMatchOutput:
      properties:
        input:
          $ref: '#/components/schemas/BusinessMatchInput'
        business_id:
          type: string
          pattern: ^[a-f0-9]{32}$
          title: Business Id
      type: object
      title: BusinessMatchOutput
    IncludesFilter_RegionCode_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            type: string
            pattern: ^(ad-02|ad-03|ad-04|ad-05|ad-06|ad-07|ad-08|ae-aj|ae-az|ae-du|ae-fu|ae-rk|ae-sh|ae-uq|af-bal|af-bam|af-bdg|af-bds|af-bgl|af-day|af-fra|af-fyb|af-gha|af-gho|af-hel|af-her|af-jow|af-kab|af-kan|af-kap|af-kdz|af-kho|af-knr|af-lag|af-log|af-nan|af-nim|af-nur|af-pan|af-par|af-pia|af-pka|af-sam|af-sar|af-tak|af-uru|af-war|af-zab|ag-03|ag-04|ag-05|ag-06|ag-07|ag-08|ag-10|ag-11|al-01|al-02|al-03|al-04|al-05|al-06|al-07|al-08|al-09|al-10|al-11|al-12|al-br|al-bu|al-di|al-dl|al-dr|al-dv|al-el|al-er|al-fr|al-gj|al-gr|al-ha|al-ka|al-kb|al-kc|al-ko|al-kr|al-ku|al-lb|al-le|al-lu|al-mk|al-mm|al-mr|al-mt|al-pg|al-pq|al-pr|al-pu|al-sh|al-sk|al-sr|al-te|al-tp|al-tr|al-vl|am-ag|am-ar|am-av|am-er|am-gr|am-kt|am-lo|am-sh|am-su|am-tv|am-vd|ao-bgo|ao-bgu|ao-bie|ao-cab|ao-ccu|ao-cnn|ao-cno|ao-cus|ao-hua|ao-hui|ao-lno|ao-lsu|ao-lua|ao-mal|ao-mox|ao-nam|ao-uig|ao-zai|ar-a|ar-b|ar-c|ar-d|ar-e|ar-g|ar-h|ar-j|ar-k|ar-l|ar-m|ar-n|ar-p|ar-q|ar-r|ar-s|ar-t|ar-u|ar-v|ar-w|ar-x|ar-y|ar-z|at-1|at-2|at-3|at-4|at-5|at-6|at-7|at-8|at-9|au-act|au-nsw|au-nt|au-qld|au-sa|au-tas|au-vic|au-wa|az-abs|az-aga|az-agc|az-agm|az-ags|az-agu|az-ast|az-ba|az-bab|az-bal|az-bar|az-bey|az-bil|az-cab|az-cal|az-cul|az-das|az-fuz|az-ga|az-gad|az-gor|az-goy|az-gyg|az-hac|az-imi|az-ism|az-kal|az-kan|az-kur|az-la|az-lac|az-lan|az-ler|az-mas|az-mi|az-na|az-nef|az-nv|az-nx|az-ogu|az-ord|az-qab|az-qax|az-qaz|az-qba|az-qbi|az-qob|az-qus|az-sa|az-sab|az-sad|az-sah|az-sak|az-sal|az-sar|az-sat|az-sbn|az-siy|az-skr|az-sm|az-smi|az-smx|az-sr|az-sus|az-tar|az-tov|az-uca|az-xa|az-xac|az-xci|az-xiz|az-xvd|az-yar|az-ye|az-yev|az-zan|az-zaq|az-zar|ba-01|ba-02|ba-03|ba-04|ba-05|ba-06|ba-07|ba-08|ba-09|ba-10|ba-bih|ba-brc|ba-srp|bb-01|bb-02|bb-03|bb-04|bb-05|bb-06|bb-07|bb-08|bb-09|bb-10|bb-11|bd-01|bd-02|bd-03|bd-04|bd-05|bd-06|bd-07|bd-08|bd-09|bd-10|bd-11|bd-12|bd-13|bd-14|bd-15|bd-16|bd-17|bd-18|bd-19|bd-20|bd-21|bd-22|bd-23|bd-24|bd-25|bd-26|bd-27|bd-28|bd-29|bd-30|bd-31|bd-32|bd-33|bd-34|bd-35|bd-36|bd-37|bd-38|bd-39|bd-40|bd-41|bd-42|bd-43|bd-44|bd-45|bd-46|bd-47|bd-48|bd-49|bd-50|bd-51|bd-52|bd-53|bd-54|bd-55|bd-56|bd-57|bd-58|bd-59|bd-60|bd-61|bd-62|bd-63|bd-64|bd-a|bd-b|bd-c|bd-d|bd-e|bd-f|bd-g|be-bru|be-van|be-vbr|be-vlg|be-vli|be-vov|be-vwv|be-wal|be-wbr|be-wht|be-wlg|be-wlx|be-wna|bf-01|bf-02|bf-03|bf-04|bf-05|bf-06|bf-07|bf-08|bf-09|bf-10|bf-11|bf-12|bf-13|bf-bal|bf-bam|bf-ban|bf-baz|bf-bgr|bf-blg|bf-blk|bf-com|bf-gan|bf-gna|bf-gou|bf-hou|bf-iob|bf-kad|bf-ken|bf-kmd|bf-kmp|bf-kop|bf-kos|bf-kot|bf-kow|bf-ler|bf-lor|bf-mou|bf-nam|bf-nao|bf-nay|bf-nou|bf-oub|bf-oud|bf-pas|bf-pon|bf-sen|bf-sis|bf-smt|bf-sng|bf-som|bf-sor|bf-tap|bf-tui|bf-yag|bf-yat|bf-zir|bf-zon|bf-zou|bg-01|bg-02|bg-03|bg-04|bg-05|bg-06|bg-07|bg-08|bg-09|bg-10|bg-11|bg-12|bg-13|bg-14|bg-15|bg-16|bg-17|bg-18|bg-19|bg-20|bg-21|bg-22|bg-23|bg-24|bg-25|bg-26|bg-27|bg-28|bh-13|bh-14|bh-15|bh-16|bh-17|bi-bb|bi-bl|bi-bm|bi-br|bi-ca|bi-ci|bi-gi|bi-ki|bi-kr|bi-ky|bi-ma|bi-mu|bi-mw|bi-ng|bi-rt|bi-ry|bj-ak|bj-al|bj-aq|bj-bo|bj-co|bj-do|bj-ko|bj-li|bj-mo|bj-ou|bj-pl|bj-zo|bn-be|bn-bm|bn-te|bn-tu|bo-b|bo-c|bo-h|bo-l|bo-n|bo-o|bo-p|bo-s|bo-t|bq-bo|bq-sa|bq-se|br-ac|br-al|br-am|br-ap|br-ba|br-ce|br-df|br-es|br-fn|br-go|br-ma|br-mg|br-ms|br-mt|br-pa|br-pb|br-pe|br-pi|br-pr|br-rj|br-rn|br-ro|br-rr|br-rs|br-sc|br-se|br-sp|br-to|bs-ak|bs-bi|bs-bp|bs-by|bs-ce|bs-ci|bs-ck|bs-co|bs-cs|bs-eg|bs-ex|bs-fp|bs-gc|bs-hi|bs-ht|bs-in|bs-li|bs-mc|bs-mg|bs-mi|bs-ne|bs-no|bs-ns|bs-rc|bs-ri|bs-sa|bs-se|bs-so|bs-ss|bs-sw|bs-wg|bt-11|bt-12|bt-13|bt-14|bt-15|bt-21|bt-22|bt-23|bt-24|bt-31|bt-32|bt-33|bt-34|bt-41|bt-42|bt-43|bt-44|bt-45|bt-ga|bt-ty|bw-ce|bw-gh|bw-kg|bw-kl|bw-kw|bw-ne|bw-nw|bw-se|bw-so|by-br|by-hm|by-ho|by-hr|by-ma|by-mi|by-vi|bz-bz|bz-cy|bz-czl|bz-ow|bz-sc|bz-tol|ca-ab|ca-bc|ca-mb|ca-nb|ca-nl|ca-ns|ca-nt|ca-nu|ca-on|ca-pe|ca-qc|ca-sk|ca-yt|cd-bc|cd-bn|cd-eq|cd-ka|cd-ke|cd-kn|cd-kw|cd-ma|cd-nk|cd-or|cd-sk|cf-ac|cf-bb|cf-bgf|cf-bk|cf-hk|cf-hm|cf-hs|cf-kb|cf-kg|cf-lb|cf-mb|cf-mp|cf-nm|cf-op|cf-se|cf-uk|cf-vk|cg-11|cg-12|cg-13|cg-14|cg-15|cg-2|cg-5|cg-7|cg-8|cg-9|cg-bzv|ch-ag|ch-ai|ch-ar|ch-be|ch-bl|ch-bs|ch-fr|ch-ge|ch-gl|ch-gr|ch-ju|ch-lu|ch-ne|ch-nw|ch-ow|ch-sg|ch-sh|ch-so|ch-sz|ch-tg|ch-ti|ch-ur|ch-vd|ch-vs|ch-zg|ch-zh|ci-01|ci-02|ci-03|ci-04|ci-05|ci-06|ci-07|ci-08|ci-09|ci-10|ci-11|ci-12|ci-13|ci-14|ci-15|ci-16|ci-17|ci-18|ci-19|cl-ai|cl-an|cl-ap|cl-ar|cl-at|cl-bi|cl-co|cl-li|cl-ll|cl-lr|cl-ma|cl-ml|cl-rm|cl-ta|cl-vs|cm-ad|cm-ce|cm-en|cm-es|cm-lt|cm-no|cm-nw|cm-ou|cm-su|cm-sw|cn-ah|cn-bj|cn-cq|cn-fj|cn-gd|cn-gs|cn-gx|cn-gz|cn-ha|cn-hb|cn-he|cn-hi|cn-hk|cn-hl|cn-hn|cn-jl|cn-js|cn-jx|cn-ln|cn-mo|cn-nm|cn-nx|cn-qh|cn-sc|cn-sd|cn-sh|cn-sn|cn-sx|cn-tj|cn-tw|cn-xj|cn-xz|cn-yn|cn-zj|co-ama|co-ant|co-ara|co-atl|co-bol|co-boy|co-cal|co-caq|co-cas|co-cau|co-ces|co-cho|co-cor|co-cun|co-dc|co-gua|co-guv|co-hui|co-lag|co-mag|co-met|co-nar|co-nsa|co-put|co-qui|co-ris|co-san|co-sap|co-suc|co-tol|co-vac|co-vau|co-vid|cr-a|cr-c|cr-g|cr-h|cr-l|cr-p|cr-sj|cu-01|cu-02|cu-03|cu-04|cu-05|cu-06|cu-07|cu-08|cu-09|cu-10|cu-11|cu-12|cu-13|cu-14|cu-99|cv-b|cv-br|cv-bv|cv-ca|cv-cf|cv-cr|cv-ma|cv-mo|cv-pa|cv-pn|cv-pr|cv-rb|cv-rg|cv-rs|cv-s|cv-sd|cv-sf|cv-sl|cv-sm|cv-so|cv-ss|cv-sv|cv-ta|cv-ts|cy-01|cy-02|cy-03|cy-04|cy-05|cy-06|cz-10|cz-101|cz-102|cz-103|cz-104|cz-105|cz-106|cz-107|cz-108|cz-109|cz-110|cz-111|cz-112|cz-113|cz-114|cz-115|cz-116|cz-117|cz-118|cz-119|cz-120|cz-121|cz-122|cz-20|cz-201|cz-202|cz-203|cz-204|cz-205|cz-206|cz-207|cz-208|cz-209|cz-20a|cz-20b|cz-20c|cz-31|cz-311|cz-312|cz-313|cz-314|cz-315|cz-316|cz-317|cz-32|cz-321|cz-322|cz-323|cz-324|cz-325|cz-326|cz-327|cz-41|cz-411|cz-412|cz-413|cz-42|cz-421|cz-422|cz-423|cz-424|cz-425|cz-426|cz-427|cz-51|cz-511|cz-512|cz-513|cz-514|cz-52|cz-521|cz-522|cz-523|cz-524|cz-525|cz-53|cz-531|cz-532|cz-533|cz-534|cz-63|cz-631|cz-632|cz-633|cz-634|cz-635|cz-64|cz-641|cz-642|cz-643|cz-644|cz-645|cz-646|cz-647|cz-71|cz-711|cz-712|cz-713|cz-714|cz-715|cz-72|cz-721|cz-722|cz-723|cz-724|cz-80|cz-801|cz-802|cz-803|cz-804|cz-805|cz-806|de-bb|de-be|de-bw|de-by|de-hb|de-he|de-hh|de-mv|de-ni|de-nw|de-rp|de-sh|de-sl|de-sn|de-st|de-th|dj-ar|dj-as|dj-di|dj-dj|dj-ob|dj-ta|dk-81|dk-82|dk-83|dk-84|dk-85|dm-01|dm-02|dm-03|dm-04|dm-05|dm-06|dm-07|dm-08|dm-09|dm-10|do-01|do-02|do-03|do-04|do-05|do-06|do-07|do-08|do-09|do-10|do-11|do-12|do-13|do-14|do-15|do-16|do-17|do-18|do-19|do-20|do-21|do-22|do-23|do-24|do-25|do-26|do-27|do-28|do-29|do-30|dz-01|dz-02|dz-03|dz-04|dz-05|dz-06|dz-07|dz-08|dz-09|dz-10|dz-11|dz-12|dz-13|dz-14|dz-15|dz-16|dz-17|dz-18|dz-19|dz-20|dz-21|dz-22|dz-23|dz-24|dz-25|dz-26|dz-27|dz-28|dz-29|dz-30|dz-31|dz-32|dz-33|dz-34|dz-35|dz-36|dz-37|dz-38|dz-39|dz-40|dz-41|dz-42|dz-43|dz-44|dz-45|dz-46|dz-47|dz-48|ec-a|ec-b|ec-c|ec-d|ec-e|ec-f|ec-g|ec-h|ec-i|ec-l|ec-m|ec-n|ec-o|ec-p|ec-r|ec-s|ec-sd|ec-se|ec-t|ec-u|ec-w|ec-x|ec-y|ec-z|ee-37|ee-39|ee-44|ee-49|ee-51|ee-57|ee-59|ee-65|ee-67|ee-70|ee-74|ee-78|ee-82|ee-84|ee-86|eg-alx|eg-asn|eg-ast|eg-ba|eg-bh|eg-bns|eg-c|eg-dk|eg-dt|eg-fym|eg-gh|eg-gz|eg-hu|eg-is|eg-js|eg-kb|eg-kfs|eg-kn|eg-mn|eg-mnf|eg-mt|eg-pts|eg-shg|eg-shr|eg-sin|eg-su|eg-suz|eg-wad|er-an|er-dk|er-du|er-gb|er-ma|er-sk|es-a|es-ab|es-al|es-an|es-ar|es-as|es-av|es-b|es-ba|es-bi|es-bu|es-c|es-ca|es-cb|es-cc|es-ce|es-cl|es-cm|es-cn|es-co|es-cr|es-cs|es-ct|es-cu|es-ex|es-ga|es-gc|es-gi|es-gr|es-gu|es-h|es-hu|es-ib|es-j|es-l|es-le|es-lo|es-lu|es-m|es-ma|es-mc|es-md|es-ml|es-mu|es-na|es-nc|es-o|es-or|es-p|es-pm|es-po|es-pv|es-ri|es-s|es-sa|es-se|es-sg|es-so|es-ss|es-t|es-te|es-tf|es-to|es-v|es-va|es-vc|es-vi|es-z|es-za|et-aa|et-af|et-am|et-be|et-dd|et-ga|et-ha|et-or|et-sn|et-so|et-ti|fi-01|fi-02|fi-03|fi-04|fi-05|fi-06|fi-07|fi-08|fi-09|fi-10|fi-11|fi-12|fi-13|fi-14|fi-15|fi-16|fi-17|fi-18|fi-19|fj-c|fj-e|fj-n|fj-r|fj-w|fm-ksa|fm-pni|fm-trk|fm-yap|fr-01|fr-02|fr-03|fr-04|fr-05|fr-06|fr-07|fr-08|fr-09|fr-10|fr-11|fr-12|fr-13|fr-14|fr-15|fr-16|fr-17|fr-18|fr-19|fr-21|fr-22|fr-23|fr-24|fr-25|fr-26|fr-27|fr-28|fr-29|fr-2a|fr-2b|fr-30|fr-31|fr-32|fr-33|fr-34|fr-35|fr-36|fr-37|fr-38|fr-39|fr-40|fr-41|fr-42|fr-43|fr-44|fr-45|fr-46|fr-47|fr-48|fr-49|fr-50|fr-51|fr-52|fr-53|fr-54|fr-55|fr-56|fr-57|fr-58|fr-59|fr-60|fr-61|fr-62|fr-63|fr-64|fr-65|fr-66|fr-67|fr-68|fr-69|fr-70|fr-71|fr-72|fr-73|fr-74|fr-75|fr-76|fr-77|fr-78|fr-79|fr-80|fr-81|fr-82|fr-83|fr-84|fr-85|fr-86|fr-87|fr-8

# --- truncated at 32 KB (121 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/explorium/refs/heads/main/openapi/explorium-v2businesses-api-openapi.yml