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

# Get a specific currency wallet

> Returns the wallet for the given ISO currency code along with the current balance.



## OpenAPI

````yaml openapi.json get /v1/wallets/{currency}
openapi: 3.0.0
info:
  title: Inflow API
  version: 1.0.0
  description: API service for managing customer cards
  contact:
    name: API Support
servers:
  - url: https://sandbox.inflowafrica.com/api
    description: Sandbox
  - url: https://app.inflowpay.net/api
    description: Production
  - url: http://localhost:3000/api
    description: Local
security:
  - bearerAuth: []
tags: []
paths:
  /v1/wallets/{currency}:
    get:
      tags:
        - External API - Wallets
      summary: Get a specific currency wallet
      description: >-
        Returns the wallet for the given ISO currency code along with the
        current balance.
      parameters:
        - in: path
          name: currency
          required: true
          schema:
            type: string
            enum:
              - NGN
              - USD
              - EUR
              - GBP
          description: ISO 4217 currency code
      responses:
        '200':
          description: Wallet details
        '404':
          description: Wallet not found for the given currency
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter JWT token
    apiKeyAuth:
      type: http
      scheme: bearer
      description: Enter your API key starting with gtw_sk_

````