> ## 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.

# Get country codes

> Returns the list of supported countries with ISO 3166-1 alpha-2 codes, alpha-3 codes, and English names.
Use these codes for `birthCountryIsoCode` and `countryIsoCode` fields when registering bank accounts.
This endpoint is public and does not require authentication.




## OpenAPI

````yaml /openapi.yaml get /lookup/country-codes
openapi: 3.1.0
info:
  title: FX API
  version: 1.0.0
  description: >
    API for managing FX operations including onboarding, quotes, orders, and
    customer management.

    This API provides endpoints for managing customers, bank accounts, crypto
    wallets, orders, and webhooks.
servers:
  - url: https://api.etherfuse.com
    description: Production API
  - url: https://api.sand.etherfuse.com
    description: Sandbox API (for testing)
security: []
tags:
  - name: Lookup
    description: Public endpoints for looking up stablebond and exchange rate data
  - name: Assets
    description: Get available assets for ramping
  - name: Onboarding
    description: Customer onboarding and KYC
  - name: Bank Accounts
    description: Manage customer bank accounts
  - name: Agreements
    description: Handle customer agreements and consents
  - name: Quotes
    description: Get quotes for conversions
  - name: Orders
    description: Create and manage orders
  - name: Swaps
    description: Create and manage swaps
  - name: Customers
    description: Manage customers
  - name: Crypto Wallets
    description: Manage crypto wallets
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: Organizations
    description: Manage organizations and child organizations
paths:
  /lookup/country-codes:
    get:
      tags:
        - Lookup
      summary: Get country codes
      description: >
        Returns the list of supported countries with ISO 3166-1 alpha-2 codes,
        alpha-3 codes, and English names.

        Use these codes for `birthCountryIsoCode` and `countryIsoCode` fields
        when registering bank accounts.

        This endpoint is public and does not require authentication.
      operationId: getCountryCodes
      responses:
        '200':
          description: Country codes retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    code:
                      type: string
                      description: ISO 3166-1 alpha-2 code
                      example: MX
                    code3:
                      type: string
                      description: ISO 3166-1 alpha-3 code
                      example: MEX
                    name:
                      type: string
                      description: English country name
                      example: Mexico

````