Skip to main content
GET
/
providers
Get all providers
curl --request GET \
  --url https://app.gnosisramp.com/api/v1/providers \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "bridge",
    "name": "Bridge",
    "code": "BRIDGE",
    "logo": "https://example.com/bridge-logo.png"
  }
]

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 providers

id
string
required

Unique provider identifier

Example:

"bridge"

name
string
required

Provider display name

Example:

"Bridge"

code
string
required

Provider code

Example:

"BRIDGE"

logo
string | null

URL to the provider's logo

Example:

"https://example.com/bridge-logo.png"