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

# List occupation categories

> The values [`POST /ramp/customer/{customer_id}/verification/questionnaire`](/api-reference/kyc/submit-a-verification-questionnaire) accepts for `industry`. Either the `code` or the `label` is submittable.

The codes are opaque, so this is the only way to know them. Read live from the same definition the submission validates against, so the two cannot disagree.



## OpenAPI

````yaml /openapi.json get /ramp/verification/occupations
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: >-
      Submit a customer's verification data, documents and questionnaire
      answers, import a verification they already passed elsewhere, and check
      where their KYC stands.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
  - name: Deprecated
    description: >-
      Endpoints kept working until their sunset date and then removed. See the
      deprecations page for replacements and dates.
paths:
  /ramp/verification/occupations:
    get:
      tags:
        - KYC
      summary: List occupation categories
      description: >-
        The values [`POST
        /ramp/customer/{customer_id}/verification/questionnaire`](/api-reference/kyc/submit-a-verification-questionnaire)
        accepts for `industry`. Either the `code` or the `label` is submittable.


        The codes are opaque, so this is the only way to know them. Read live
        from the same definition the submission validates against, so the two
        cannot disagree.
      operationId: list_occupation_categories
      responses:
        '200':
          description: The accepted occupation categories.
          content:
            application/json:
              schema:
                type: object
                required:
                  - occupations
                properties:
                  occupations:
                    type: array
                    items:
                      type: object
                      required:
                        - code
                        - label
                      properties:
                        code:
                          type: string
                          description: The value to send as `industry`.
                        label:
                          type: string
                          description: What the code means. Also accepted as `industry`.
              example:
                occupations:
                  - code: '1000000'
                    label: NOT APPLICABLE
                  - code: '4430200'
                    label: >-
                      INFORMATION TECHNOLOGY - IT PROGRAMMING ENGINEERS OR
                      TECHNICIANS
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````