Explorium Businesses API

Match, fetch, stat, autocomplete, and event/enrollment operations over the Explorium business dataset (v1).

Operations 9

POST /v1/businesses/match Match Businesses #
POST /v1/businesses Fetch Businesses #
POST /v1/businesses/events Fetch Businesses Events #
GET /v1/businesses/autocomplete Autocomplete Businesses #
POST /v1/businesses/stats Fetch Stats #
GET /v1/businesses/events/enrollments Get Businesses Enrollments #
POST /v1/businesses/events/enrollments Add Businesses Enrollments #
DELETE /v1/businesses/events/enrollments Delete Businesses Enrollments #
PATCH /v1/businesses/events/enrollments Update Businesses Enrollments #

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/explorium-businesses-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

explorium-businesses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Partner Service Businesses API
  version: 0.3.19
servers:
- url: https://api.explorium.ai
  description: AgentSource Server
tags:
- name: Businesses
paths:
  /v1/businesses/match:
    post:
      tags:
      - Businesses
      summary: Match Businesses
      description: 'Match a list of businesses attributes to ids.

        Returns a list of the same length and order as the input list, with the matched ids.'
      operationId: match_businesses
      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: []
  /v1/businesses:
    post:
      tags:
      - Businesses
      summary: Fetch Businesses
      description: 'Filters businesses by country, company size, revenue, and more.

        Returns minimal data needed for further filtering, deduplication, or record previews.'
      operationId: fetch_businesses
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesFetchRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - $ref: '#/components/schemas/BusinessesFetchResponse'
                - $ref: '#/components/schemas/BusinessesFetchResponseV2'
                title: Response Fetch Businesses
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
  /v1/businesses/events:
    post:
      tags:
      - Businesses
      summary: Fetch Businesses Events
      description: Create events and fetch for businesses.
      operationId: fetch_businesses_events
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesEventsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
  /v1/businesses/autocomplete:
    get:
      tags:
      - Businesses
      summary: Autocomplete Businesses
      description: Autocomplete businesses by field and query.
      operationId: businesses_autocomplete
      parameters:
      - required: true
        schema:
          $ref: '#/components/schemas/AutocompleteType'
        name: field
        in: query
      - required: false
        schema:
          type: string
          title: Query
          default: ''
        name: query
        in: query
      - required: false
        schema:
          type: boolean
          title: Semantic Search
          default: false
        name: semantic_search
        in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AutoCompleteItem'
                type: array
                title: Response Businesses Autocomplete
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
  /v1/businesses/stats:
    post:
      tags:
      - Businesses
      summary: Fetch Stats
      description: Fetch stats for businesses.
      operationId: fetch_stats
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesStatsRequest'
        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: []
  /v1/businesses/events/enrollments:
    get:
      tags:
      - Businesses
      summary: Get Businesses Enrollments
      description: Show businesses events enrollments records for user.
      operationId: get_businesses_enrollments
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesEnrollmentsGetResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
    post:
      tags:
      - Businesses
      summary: Add Businesses Enrollments
      description: Add enrollments for businesses
      operationId: add_businesses_enrollments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesEnrollmentsAddRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesEnrollmentsAddResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
    delete:
      tags:
      - Businesses
      summary: Delete Businesses Enrollments
      description: Delete events enrollments records
      operationId: delete_businesses_enrollments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesEnrollmentsDeleteRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesEnrollmentsDeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
    patch:
      tags:
      - Businesses
      summary: Update Businesses Enrollments
      description: Update enrollments for businesses
      operationId: update_businesses_enrollments
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessesEnrollmentsUpdateRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessesEnrollmentsUpdateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - APIKeyHeader: []
components:
  schemas:
    IncludesFilter_NumberOfLocations_:
      properties:
        negate:
          type: boolean
          title: Negate
        values:
          items:
            $ref: '#/components/schemas/NumberOfLocations'
          type: array
      additionalProperties: false
      type: object
      required:
      - values
      title: IncludesFilter[NumberOfLocations]
    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
    BusinessesEnrollmentsUpdateResponse:
      properties:
        response_context:
          $ref: '#/components/schemas/ResponseContext'
        enrollment_key:
          type: string
          minLength: 4
          title: Enrollment Key
        enrollment_id:
          type: string
          title: Enrollment Id
      type: object
      required:
      - response_context
      - enrollment_key
      - enrollment_id
      title: BusinessesEnrollmentsUpdateResponse
      description: This is base response model for all responses in partner service.
    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
    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.
    InternalEventIdentifier:
      type: string
      enum:
      - prospect_changed_role
      - prospect_changed_company
      - prospect_job_start_anniversary
      - ipo_announcement
      - new_funding_round
      - new_investment
      - new_product
      - new_office
      - closing_office
      - new_partnership
      - merger_and_acquisitions
      - 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
      - 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
      - company_award
      - outages_and_security_breaches
      - cost_cutting
      - lawsuits_and_legal_issues
      title: InternalEventIdentifier
      description: 'The `InternalEventIdentifier` class is an enumeration that defines internal event identifiers.


        This enum is used to categorize and track internal events related to businesses and prospects.

        All events are now handled internally through the event service.'
    BusinessMatchOutput:
      properties:
        input:
          $ref: '#/components/schemas/BusinessMatchInput'
        business_id:
          type: string
          pattern: ^[a-f0-9]{32}$
          title: Business Id
      type: object
      title: BusinessMatchOutput
    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]
    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
    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.'
    ExistsFilter:
      properties:
        negate:
          type: boolean
          title: Negate
        value:
          type: boolean
          title: Value
      additionalProperties: false
      type: object
      required:
      - value
      title: ExistsFilter
    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]
    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]
    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.
    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.
    BusinessesFetchRequest:
      properties:
        request_context:
          type: object
          title: Request Context
          marked_for_null_replacement: true
          nullable: true
        mode:
          allOf:
          - $ref: '#/components/schemas/BaseFetchMode'
          description: The mode of fetching businesses.
          example: full
        size:
          type: integer
          maximum: 60000.0
          minimum: 1.0
          title: Size
          description: The maximum number of businesses to return. Max size is 60000 (which is the default value)
          default: 60000
          example: 3
        page_size:
          type: integer
          maximum: 500.0
          minimum: 1.0
          title: Page Size
          description: The maximum number of businesses in a page. Max limit is 500
          example: 3
        page:
          type: integer
          minimum: 1.0
          title: Page
          description: The page number to fetch.
          default: 1
          example: 1
          nullable: true
        exclude:
          items:
            type: string
            pattern: ^[a-f0-9]{32}$
          type: array
          maxItems: 1000
          title: Exclude
          description: List of business ids to exclude from the response.
          marked_for_null_replacement: true
          nullable: true
        filters:
          allOf:
          - $ref: '#/components/schemas/BusinessesFetchFilters'
          title: Filters
          example: {}
          nullable: true
        next_cursor:
          type: string
          title: Next Cursor
          description: The sort values from the last document returned by the previous page. If provided, cursor pagination is used instead of page-based pagination. send "null" to start with next_cursor pagination from the beginning.
          marked_for_null_replacement: true
          nullable: true
      additionalProperties: false
      type: object
      required:
      - mode
      - page_size
      title: BusinessesFetchRequest
    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]
    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
    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
    AutocompleteType:
      enum:
      - country
      - country_code
      - region_country_code
      - google_category
      - naics_category
      - linkedin_category
      - company_tech_stack_tech
      - company_tech_stack_categories
      - job_title
      - company_size
      - company_revenue
      - number_of_locations
      - company_age
      - job_department
      - job_level
      - city_region_country
      - company_name
      - business_intent_topics
      - city_region
      - skills
      - interests
      title: AutocompleteType
      description: Enum for autocomplete types.
    Business:
      properties:
        business_id:
          type: string
          pattern: ^[a-f0-9]{32}$
          title: Business Id
        name:
          type: string
          title: Name
        domain:
          type: string
          maxLength: 2048
          pattern: ^(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)+(?:[a-z\u00a1-\uffff]{2,}\.?)$
          title: Domain
        logo:
          type: string
          title: Logo
        country_name:
          type: string
          pattern: ^(aruba|afghanistan|angola|anguilla|åland\ islands|albania|andorra|united\ arab\ emirates|argentina|armenia|american\ samoa|antarctica|french\ southern\ territories|antigua\ and\ barbuda|australia|austria|azerbaijan|burundi|belgium|benin|bonaire,\ sint\ eustatius\ and\ saba|burkina\ faso|bangladesh|bulgaria|bahrain|bahamas|bosnia\ and\ herzegovina|saint\ barthélemy|belarus|belize|bermuda|bolivia,\ plurinational\ state\ of|brazil|barbados|brunei\ darussalam|bhutan|bouvet\ island|botswana|central\ african\ republic|canada|cocos\ \(keeling\)\ islands|switzerland|chile|china|côte\ d'ivoire|cameroon|congo,\ the\ democratic\ republic\ of\ the|congo|cook\ islands|colombia|comoros|cabo\ verde|costa\ rica|cuba|curaçao|christmas\ island|cayman\ islands|cyprus|czechia|germany|djibouti|dominica|denmark|dominican\ republic|algeria|ecuador|egypt|eritrea|western\ sahara|spain|estonia|ethiopia|finland|fiji|falkland\ islands\ \(malvinas\)|france|faroe\ islands|micronesia,\ federated\ states\ of|gabon|united\ kingdom|georgia|guernsey|ghana|gibraltar|guinea|guadeloupe|gambia|guinea\-bissau|equatorial\ guinea|greece|grenada|greenland|guatemala|french\ guiana|guam|guyana|hong\ kong|heard\ island\ and\ mcdonald\ islands|honduras|croatia|haiti|hungary|indonesia|isle\ of\ man|india|british\ indian\ ocean\ territory|ireland|iran,\ islamic\ republic\ of|iraq|iceland|israel|italy|jamaica|jersey|jordan|japan|kazakhstan|kenya|kyrgyzstan|cambodia|kiribati|saint\ kitts\ and\ nevis|korea,\ republic\ of|kuwait|lao\ people's\ democratic\ republic|lebanon|liberia|libya|saint\ lucia|liechtenstein|sri\ lanka|lesotho|lithuania|luxembourg|latvia|macao|saint\ martin\ \(french\ part\)|morocco|monaco|moldova,\ republic\ of|madagascar|maldives|mexico|marshall\ islands|north\ macedonia|mali|malta|myanmar|montenegro|mongolia|northern\ mariana\ islands|mozambique|mauritania|montserrat|martinique|mauritius|malawi|malaysia|mayotte|namibia|new\ caledonia|niger|norfolk\ island|nigeria|nicaragua|niue|netherlands|norway|nepal|nauru|new\ zealand|oman|pakistan|panama|pitcairn|peru|philippines|palau|papua\ new\ guinea|poland|puerto\ rico|korea,\ democratic\ people's\ republic\ of|portugal|paraguay|palestine,\ state\ of|french\ polynesia|qatar|réunion|romania|russian\ federation|rwanda|saudi\ arabia|sudan|senegal|singapore|south\ georgia\ and\ the\ south\ sandwich\ islands|saint\ helena,\ ascension\ and\ tristan\ da\ cunha|svalbard\ and\ jan\ mayen|solomon\ islands|sierra\ leone|el\ salvador|san\ marino|somalia|saint\ pierre\ and\ miquelon|serbia|south\ sudan|sao\ tome\ and\ principe|suriname|slovakia|slovenia|sweden|eswatini|sint\ maarten\ \(dutch\ part\)|seychelles|syrian\ arab\ republic|turks\ and\ caicos\ islands|chad|togo|thailand|tajikistan|tokelau|turkmenistan|timor\-leste|tonga|trinidad\ and\ tobago|tunisia|turkey|tuvalu|taiwan,\ province\ of\ china|tanzania,\ united\ republic\ of|uganda|ukraine|united\ states\ minor\ outlying\ islands|uruguay|united\ states|uzbekistan|holy\ see\ \(vatican\ city\ state\)|saint\ vincent\ and\ the\ grenadines|venezuela,\ bolivarian\ republic\ of|virgin\ islands,\ british|virgin\ islands,\ u\.s\.|viet\ nam|vanuatu|wallis\ and\ futuna|samoa|kosovo|yemen|south\ africa|zambia|zimbabwe)$
          title: Country Name
        city_name:
          type: string
          title: City Name
        number_of_employees_range:
          $ref: '#/components/schemas/NumberOfEmployeesRange'
        yearly_revenue_range:
          $ref: '#/components/schemas/RevenueRange'
        website:
          type: string
          title: Website
        business_description:
          type: string
          title: Business Description
        region:
          type: string
          pattern: ^(canillo|encamp|la\ massana|ordino|sant\ julià\ de\ lòria|andorra\ la\ vella|escaldes\-engordany|'ajmān|abū\ ȥaby\ \[abu\ dhabi\]|dubayy|al\ fujayrah|ra’s\ al\ khaymah|ash\ shāriqah|umm\ al\ qaywayn|balkh|bāmyān|bādghīs|badakhshān|baghlān|dāykundī|farāh|fāryāb|ghaznī|ghōr|helmand|herāt|jowzjān|kābul|kandahār|kāpīsā|kunduz|khōst|kunar|laghmān|lōgar|nangarhār|nīmrōz|nūristān|panjshayr|parwān|paktiyā|paktīkā|samangān|sar\-e\ pul|takhār|uruzgān|wardak|zābul|saint\ george|saint\ john|saint\ mary|saint\ paul|saint\ peter|saint\ philip|barbuda|redonda|berat|durrës|elbasan|fier|gjirokastër|korçë|kukës|lezhë|dibër|shkodër|tiranë|vlorë|berat|bulqizë|dibër|delvinë|durrës|devoll|elbasan|kolonjë|fier|gjirokastër|gramsh|has|kavajë|kurbin|kuçovë|korçë|krujë|kukës|librazhd|lezhë|lushnjë|mallakastër|malësi\ e\ madhe|mirditë|mat|pogradec|peqin|përmet|pukë|shkodër|skrapar|sarandë|tepelenë|tropojë|tiranë|vlorë|aragacotn|ararat|armavir|erevan|gegarkunik'|kotayk'|lory|sirak|syunik'|tavus|vayoc\ jor|bengo|benguela|bié|cabinda|cuando\-cubango|cunene|cuanza\ norte|cuanza\ sul|huambo|huíla|lunda\ norte|lunda\ sul|luanda|malange|moxico|namibe|uíge|zaire|salta|buenos\ aires|ciudad\ autónoma\ de\ buenos\ aires|san\ luis|entre\ rios|santiago\ del\ estero|chaco|san\ juan|catamarca|la\ pampa|mendoza|misiones|formosa|neuquen|rio\ negro|santa\ fe|tucuman|chubut|tierra\ del\ fuego|corrientes|cordoba|jujuy|santa\ cruz|burgenland|kärnten|niederösterreich|oberösterreich|salzburg|steiermark|tirol|vorarlberg|wien|australian\ capital\ territory|new\ south\ wales|northern\ territory|queensland|south\ australia|tasmania|victoria|western\ australia|abşeron|ağstafa|ağcabədi|ağdam|ağdaş|ağsu|astara|bakı|babək|balakən|bərdə|beyləqan|biləsuvar|cəbrayıl|cəlilabab|culfa|daşkəsən|füzuli|gəncə|gədəbəy|goranboy|göyçay|göygöl|hacıqabul|i̇mişli|i̇smayıllı|kəlbəcər|kǝngǝrli|kürdəmir|lənkəran|laçın|lənkəran|lerik|masallı|mingəçevir|naftalan|neftçala|naxçıvan|naxçıvan|oğuz|ordubad|qəbələ|qax|qazax|quba|qubadlı|qobustan|qusar|şəki|sabirabad|sədərək|şahbuz|şəki|salyan|şərur|saatlı|şabran|siyəzən|şəmkir|sumqayıt|şamaxı|samux|şirvan|şuşa|tərtər|tovuz|ucar|xankəndi|xaçmaz|xocalı|xızı|xocavənd|yardımlı|yevlax|yevlax|zəngilan|zaqatala|zərdab|unsko\-sanski\ kanton|posavski\ kanton|tuzlanski\ kanton|zeničko\-dobojski\ kanton|bosansko\-podrinjski\ kanton|srednjobosanski\ kanton|hercegovačko\-neretvanski\ kanton|zapadnohercegovački\ kanton|kanton\ sarajevo|kanton\ br\.\ 10\ \(livanjski\ kanton\)|federacija\ bosne\ i\ hercegovine|brčko\ distrikt|republika\ srpska|christ\ church|saint\ andrew|saint\ george|saint\ james|saint\ john|saint\ joseph|saint\ lucy|saint\ michael|saint\ peter|saint\ philip|saint\ thomas|bandarban|barguna|bogra|brahmanbaria|bagerhat|barisal|bhola|comilla|chandpur|chittagong|cox's\ bazar|chuadanga|dhaka|dinajpur|faridpur|feni|gopalganj|gazipur|gaibandha|habiganj|jamalpur|jessore|jhenaidah|jaipurhat|jhalakati|kishorganj|khulna|kurigram|khagrachari|kushtia|lakshmipur|lalmonirhat|manikganj|mymensingh|munshiganj|madaripur|magura|moulvibazar|meherpur|narayanganj|netrakona|narsingdi|narail|natore|nawabganj|nilphamari|noakhali|naogaon|pabna|pirojpur|patuakhali|panchagarh|rajbari|rajshahi|rangpur|rangamati|sherpur|satkhira|sirajganj|sylhet|sunamganj|shariatpur|tangail|thakurgaon|barisal|chittagong|dhaka|khulna|rajshahi|rangpur|sylhet|bruxelles\-capitale,\ région\ de;brussels\ hoofdstedelijk\ gewest|antwerpen|vlaams\-brabant|vlaams\ gewest|limburg|oost\-vlaanderen|west\-vlaanderen|wallonne,\ région|brabant\ wallon|hainaut|liège|luxembourg|namur|boucle\ du\ mouhoun|cascades|centre|centre\-est|centre\-nord|centre\-ouest|centre\-sud|est|hauts\-bassins|nord|plateau\-central|sahel|sud\-ouest|balé|bam|banwa|bazèga|bougouriba|boulgou|boulkiemdé|comoé|ganzourgou|gnagna|gourma|houet|ioba|kadiogo|kénédougou|komondjari|kompienga|koulpélogo|kossi|kouritenga|kourwéogo|léraba|loroum|mouhoun|namentenga|naouri|nayala|noumbiel|oubritenga|oudalan|passoré|poni|séno|sissili|sanmatenga|sanguié|soum|sourou|tapoa|tui|yagha|yatenga|ziro|zondoma|zoundwéogo|blagoevgrad|burgas|varna|veliko\ tarnovo|vidin|vratsa|gabrovo|dobrich|kardzhali|kyustendil|lovech|montana|pazardzhik|pernik|pleven|plovdiv|razgrad|ruse|silistra|sliven|smolyan|sofia\-grad|sofia|stara\ zagora|targovishte|haskovo|shumen|yambol|al\ manāmah\ \(al\ ‘āşimah\)|al\ janūbīyah|al\ muḩarraq|al\ wusţá|ash\ shamālīyah|bubanza|bujumbura\ rural|bujumbura\ mairie|bururi|cankuzo|cibitoke|gitega|kirundo|karuzi|kayanza|makamba|muramvya|mwaro|ngozi|rutana|ruyigi|atakora|alibori|atlantique|borgou|collines|donga|kouffo|littoral|mono|ouémé|plateau|zou|belait|brunei\-muara|temburong|tutong|el\ beni|cochabamba|chuquisaca|la\ paz|pando|oruro|potosí|santa\ cruz|tarija|bonaire|saba|sint\ eustatius|acre|alagoas|amazonas|amapá|bahia|ceará|distrito\ federal|espírito\ santo|fernando\ de\ noronha|goiás|maranhão|minas\ gerais|mato\ grosso\ do\ sul|mato\ grosso|pará|paraíba|pernambuco|piauí|paraná|rio\ de\ janeiro|rio\ grande\ do\ norte|rondônia|roraima|rio\ grande\ do\ sul|santa\ catarina|sergipe|são\ paulo|tocantins|acklins|bimini|black\ point|berry\ islands|central\ eleuthera|cat\ island|crooked\ island\ and\ long\ cay|central\ abaco|central\ andros|east\ grand\ bahama|exuma|city\ of\ freeport|grand\ cay|harbour\ island|hope\ town|inagua|long\ island|mangrove\ cay|mayaguana|moore's\ island|north\ eleuthera|north\ abaco|north\ andros|rum\ cay|ragged\ island|south\ andros|south\ eleuthera|south\ abaco|san\ salvador|spanish\ wells|west\ grand\ bahama|paro|chhukha|ha|samtee|thimphu|tsirang|dagana|punakha|wangdue\ phodrang|sarpang|trongsa|bumthang|zhemgang|trashigang|monggar|pemagatshel|lhuentse|samdrup\ jongkha|gasa|trashi\ yangtse|central|ghanzi|kgalagadi|kgatleng|kweneng|north\-east|north\-west|south\-east|southern|bresckaja\ voblasć|horad\ minsk|homieĺskaja\ voblasć|hrodzienskaja\ voblasć|mahilioŭskaja\ voblasć|minskaja\ voblasć|viciebskaja\ voblasć|belize|cayo|corozal|orange\ walk|stann\ creek|toledo|alberta|british\ colum

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