Skip to main content
GET
/
providers
Get all providers
curl --request GET \
  --url https://api.gnosisramp.io/v1/providers \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "provider_123",
    "name": "Noah",
    "code": "NOAH",
    "logo": "https://example.com/logo.png"
  }
]

Authorizations

Authorization
string
header
required

HTTP Basic authentication using project clientId and clientSecret

Response

List of providers

id
string
required

Unique provider identifier

Example:

"provider_123"

name
string
required

Provider display name

Example:

"Noah"

code
string
required

Provider code

Example:

"NOAH"

logo
string | null

URL to the provider's logo

Example:

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