> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fuseai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the accepted company-search filter values

> The accepted values for every enum-backed company filter, each list trimmed to exactly what a filter takes. Use `fiberIndustries` for `industriesV2`, `linkedinIndustries` for `linkedinIndustries`, `crunchbaseIndustries` for `crunchbaseCategories`, `crunchbaseCategoryGroups` for `crunchbaseCategoryGroups` (case-sensitive — copy them verbatim), `companyTags` for `tags`, `naicsCodes[].code` for `naicsCodes`, `countries[].apiCode` for both `headquartersCountryCode` and `officeLocationsV2`, and `accelerators[].acceleratorSlug` for `acceleratorsV2`. Filters with no enumerable vocabulary are documented on the request schema instead: `status` (active / acquired / closed), `stage` (pre_seed, seed, series_a…series_j, public, acquired, closed, private_equity, venture_other, no_funding_yet, unknown), `fortuneRankings` (fortune-500 / fortune-1000) and `technologies`; company names, investor domains and `headquartersCity` place names come from GET /companies/autocomplete. Static vocabulary: no tenant data and no credits.

Errors:
- `429` `RATE_LIMITED` — Per-token rate limit for this bucket exhausted; retry after the window in the RateLimit-Reset header.
- `500` `UNEXPECTED_ERROR` — The request failed inside the service; nothing was billed and the request_id identifies the failure.

Requires one of the following token scopes: companies.



## OpenAPI

````yaml /openapi.json get /business/companies/filter-options
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/companies/filter-options:
    get:
      tags:
        - Company search
      summary: Get the accepted company-search filter values
      description: >-
        The accepted values for every enum-backed company filter, each list
        trimmed to exactly what a filter takes. Use `fiberIndustries` for
        `industriesV2`, `linkedinIndustries` for `linkedinIndustries`,
        `crunchbaseIndustries` for `crunchbaseCategories`,
        `crunchbaseCategoryGroups` for `crunchbaseCategoryGroups`
        (case-sensitive — copy them verbatim), `companyTags` for `tags`,
        `naicsCodes[].code` for `naicsCodes`, `countries[].apiCode` for both
        `headquartersCountryCode` and `officeLocationsV2`, and
        `accelerators[].acceleratorSlug` for `acceleratorsV2`. Filters with no
        enumerable vocabulary are documented on the request schema instead:
        `status` (active / acquired / closed), `stage` (pre_seed, seed,
        series_a…series_j, public, acquired, closed, private_equity,
        venture_other, no_funding_yet, unknown), `fortuneRankings` (fortune-500
        / fortune-1000) and `technologies`; company names, investor domains and
        `headquartersCity` place names come from GET /companies/autocomplete.
        Static vocabulary: no tenant data and no credits.


        Errors:

        - `429` `RATE_LIMITED` — Per-token rate limit for this bucket exhausted;
        retry after the window in the RateLimit-Reset header.

        - `500` `UNEXPECTED_ERROR` — The request failed inside the service;
        nothing was billed and the request_id identifies the failure.


        Requires one of the following token scopes: companies.
      operationId: getCompanyFilterOptions
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                required:
                  - filterOptions
                properties:
                  filterOptions:
                    type: object
                    required:
                      - fiberIndustries
                      - crunchbaseIndustries
                      - crunchbaseCategoryGroups
                      - linkedinIndustries
                      - companyTags
                      - naicsCodes
                      - countries
                      - accelerators
                    properties:
                      fiberIndustries:
                        type: array
                        items:
                          type: string
                        description: Values for the `industriesV2` filter.
                      crunchbaseIndustries:
                        type: array
                        items:
                          type: string
                        description: Values for the `crunchbaseCategories` filter.
                      crunchbaseCategoryGroups:
                        type: array
                        items:
                          type: string
                        description: >-
                          Values for the `crunchbaseCategoryGroups` filter;
                          case-sensitive.
                      linkedinIndustries:
                        type: array
                        items:
                          type: string
                        description: Values for the `linkedinIndustries` filter.
                      companyTags:
                        type: array
                        items:
                          type: string
                        description: Values for the `tags` filter.
                      naicsCodes:
                        type: array
                        description: Send `code` as the `naicsCodes` filter value.
                        items:
                          type: object
                          required:
                            - code
                            - title
                          properties:
                            code:
                              type: string
                            title:
                              type: string
                      countries:
                        type: array
                        description: >-
                          Send `apiCode` as the `headquartersCountryCode` and
                          `officeLocationsV2` filter value.
                        items:
                          type: object
                          required:
                            - name
                            - apiCode
                            - isoCodeAlpha2
                            - flag
                          properties:
                            name:
                              type: string
                            apiCode:
                              type: string
                              description: 3-letter code, e.g. USA.
                            isoCodeAlpha2:
                              type: string
                            flag:
                              type: string
                      accelerators:
                        type: array
                        description: >-
                          Send `acceleratorSlug` as the `acceleratorsV2` filter
                          value.
                        items:
                          type: object
                          required:
                            - acceleratorSlug
                            - acceleratorName
                            - numCompanies
                          properties:
                            acceleratorSlug:
                              type: string
                            acceleratorName:
                              type: string
                            numCompanies:
                              type: integer
                              description: >-
                                How many companies in the index carry this
                                accelerator.
              example:
                filterOptions:
                  fiberIndustries:
                    - Administrative Services
                    - Aerospace & Military
                    - Artificial Intelligence
                    - Finance
                    - Software
                    - Travel & Tourism
                  crunchbaseIndustries:
                    - 3D Printing
                    - 3D Technology
                    - A/B Testing
                    - Financial Services
                  crunchbaseCategoryGroups:
                    - Administrative Services
                    - Advertising
                    - Agriculture and Farming
                    - Apps
                    - Financial Services
                  linkedinIndustries:
                    - 3D Printing
                    - Abrasives and Nonmetallic Minerals Manufacturing
                    - Software Development
                  companyTags:
                    - raised-from-top-vc
                    - is-government
                    - is-school
                    - venture-backed-startup
                  naicsCodes:
                    - code: '11'
                      title: Agriculture, Forestry, Fishing and Hunting
                    - code: '111110'
                      title: Soybean Farming
                    - code: '513210'
                      title: Software Publishers
                  countries:
                    - name: United States of America
                      apiCode: USA
                      isoCodeAlpha2: US
                      flag: 🇺🇸
                    - name: United Kingdom
                      apiCode: GBR
                      isoCodeAlpha2: GB
                      flag: 🇬🇧
                  accelerators:
                    - acceleratorSlug: ycombinator
                      acceleratorName: Y Combinator
                      numCompanies: 6219
                    - acceleratorSlug: techstars
                      acceleratorName: Techstars
                      numCompanies: 5612
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````