Skip to main content
GET
/
exchange
/
support
Get the list of exchange portfolio connections supported by CoinStats.
curl --request GET \
  --url https://openapiv1.coinstats.app/exchange/support \
  --header 'X-API-KEY: <api-key>'
[
  {
    "connectionId": "binance",
    "name": "Binance",
    "icon": "https://static.coinstats.app/portfolio_images/binance_dark.png",
    "connectionFields": [
      {
        "name": "API Key",
        "key": "apiKey"
      },
      {
        "name": "API Secret",
        "key": "apiSecret"
      }
    ]
  }
]
1 credit per request

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Get list of exchanges

connectionId
string
required

Unique identifier for the exchange connection

Example:

"binance"

name
string
required

Display name of the exchange

Example:

"Binance"

icon
string
required

URL to the exchange icon/logo

Example:

"https://static.coinstats.app/portfolio_images/binance_dark.png"

connectionFields
object[]
required

Array of required connection fields for the exchange API

Example:
[
{ "name": "API Key", "key": "apiKey" },
{ "name": "API Secret", "key": "apiSecret" }
]
I