GET
/
info
curl --request GET \
  --url https://api.sandbox1-dev.finhost.io/crypto-exchange/info \
  --header 'Authorization: Bearer <token>'
{
  "pairs": {
    "USDT/EUR": {
      "ask": "0.9228",
      "bid": "0.9227",
      "maxdbc": 8,
      "maxdqc": 4,
      "orders": {
        "market": {
          "mode": "enabled",
          "minvbc": "10",
          "minvqc": "10"
        },
        "limit": {
          "mode": "disabled",
          "minvbc": "10",
          "minvqc": "10"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

companyId
string

Company ID

Response

200
application/json
OK

The response is of type object.