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

# List wallet currencies

> Returns user-facing wallet currencies. Stabyl exposes NGN and USD wallets; USDT and USDC are stablecoin settlement rails that credit the USD wallet.



## OpenAPI

````yaml /openapi/openapi.json get /partner/wallets/currencies
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/wallets/currencies:
    get:
      tags:
        - Wallets
      summary: List wallet currencies
      description: >-
        Returns user-facing wallet currencies. Stabyl exposes NGN and USD
        wallets; USDT and USDC are stablecoin settlement rails that credit the
        USD wallet.
      operationId: get_partner_wallets_currencies
      responses:
        '200':
          description: Supported wallet currencies
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/WalletSupportedCurrenciesResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  currencies:
                    - code: NGN
                      decimals: 2
                      deposit_enabled: true
                      logo_url: null
                      name: Nigerian Naira
                      symbol: NGN
                      wallet_enabled: true
                      withdrawal_enabled: true
                    - code: USD
                      decimals: 2
                      deposit_enabled: true
                      logo_url: null
                      name: US Dollar
                      symbol: $
                      wallet_enabled: true
                      withdrawal_enabled: true
                status: success
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: UNAUTHORIZED
                      message:
                        type: string
                        example: missing X-Api-Key header
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: UNAUTHORIZED
                  message: missing X-Api-Key header
                status: error
      security:
        - api_key: []
components:
  schemas:
    WalletSupportedCurrenciesResponse:
      type: object
      description: User-facing wallet currencies supported by the API.
      required:
        - currencies
      properties:
        currencies:
          type: array
          items:
            $ref: '#/components/schemas/WalletCurrencySupport'
    WalletCurrencySupport:
      type: object
      description: Metadata and availability flags for a user-facing wallet currency.
      required:
        - code
        - name
        - decimals
        - symbol
        - wallet_enabled
        - deposit_enabled
        - withdrawal_enabled
      properties:
        code:
          type: string
          example: NGN
        decimals:
          type: integer
          format: int32
          example: 2
        deposit_enabled:
          type: boolean
        logo_url:
          type:
            - string
            - 'null'
        name:
          type: string
          description: Human-readable currency name.
          example: Nigerian Naira
        symbol:
          type: string
          description: Currency symbol.
        wallet_enabled:
          type: boolean
        withdrawal_enabled:
          type: boolean
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API credential. Withdrawal quote and submit operations additionally
        require the documented Ed25519 timestamp, nonce, and signature headers.
      x-default: sb_test_your_key

````