Skip to main content
GET
/
currencies
/
supported
Get supported currency pairs
curl --request GET \
  --url https://app.gnosisramp.com/api/v1/currencies/supported \
  --header 'Authorization: Bearer <token>'
[
  {
    "from": "USD",
    "to": "USDC_GNO",
    "providerIds": [
      "bridge",
      "banxa"
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.ramp.gnosis.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 client credentials flow for API authentication

Response

List of supported currency pairs

from
string
required

Source currency code

Example:

"USD"

to
string
required

Destination currency code

Example:

"USDC_GNO"

providerIds
string[]
required

IDs of providers that support this currency pair

Example:
["bridge", "banxa"]