Skip to main content
GET
/
currencies
cURL
curl --request GET \
  --url https://api.example.com/currencies
{
  "success": true,
  "message": "Operation successful",
  "data": [
    {
      "name": "Nigerian naira",
      "code": "NGN",
      "symbol": "₦",
      "type": "fiat",
      "network": []
    }
  ]
}

Query Parameters

type
enum<string>
required

Filter by currency type (crypto or fiat)

Available options:
crypto,
fiat
code
string

Filter by currency code (e.g., NGN, BTC)

Response

200 - application/json

Currencies retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Operation successful"

data
object[]