Skip to main content
GET
/
v1
/
currencies
/
List currencies
curl --request GET \
  --url https://api.paystack.com/v1/currencies/ \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Supported currencies fetched successfully",
  "code": "ok",
  "data": [
    {
      "code": "NGN",
      "name": "Nigerian Naira",
      "type": "fiat",
      "precision": 2,
      "can_onramp": true,
      "can_offramp": true,
      "can_transfer": true,
      "can_deposit": true,
      "can_convert": true,
      "networks": [
        {
          "network": "bank",
          "inbound": {
            "min": "1.00",
            "max": "5000000.00"
          },
          "outbound": {
            "min": "1.00",
            "max": "5000000.00"
          }
        }
      ],
      "created_at": "2025-01-15T12:34:56.000Z",
      "updated_at": "2025-01-15T12:34:56.000Z",
      "country_code": "NG"
    }
  ],
  "meta": {
    "request_id": "req_01HXYZ4K5ABCDEFGHJKLMNPQRS",
    "timestamp": "2026-05-14T15:43:55.732Z",
    "version": "1"
  }
}

Authorizations

Authorization
string
header
required

API key issued during merchant onboarding.

Query Parameters

code
string
country_code
string
type
string
can_onramp
string
can_offramp
string
can_transfer
string
can_deposit
string
can_convert
string

Response

Supported currencies fetched successfully

status
enum<boolean>
required
Available options:
true
Example:

true

message
string
required

Human-readable summary

Example:

"Supported currencies fetched successfully"

code
enum<string>
required
Available options:
ok
Example:

"ok"

data
object[]
required
meta
object
required