Get directions list

get
https://api.cryptomus.com/v2/user-api/convert/direction-list
COPY

Request

Request example

curl https://api.cryptomus.com/v2/user-api/convert/direction-list \
    -X GET \
    -H 'userId: 8b03432e-385b-4670-8d06-064591096795' \
    -H 'sign: fe99035f86fa436181717b302b95bacff1' \
    -H 'Content-Type: application/json'
COPY

Response

Response parameters

NameDefinition
fromCurrency From
toCurrency to
min_fromMin Amount from
max_fromMax Amount from
min_toMin Amount to
max_toMax Amount to
rateCourse

Definition

Currency From

Definition

Currency to

Definition

Min Amount from

Definition

Max Amount from

Definition

Min Amount to

Definition

Max Amount to

Definition

Course

Response example


1{
2  "state": 0,
3  "result": {
4    "items": [
5      {
6        "from": "TRX",
7        "to": "ETH",
8        "min_from": "100.00000000",
9        "min_to": "0.00100000",
10        "max_from": "100000.00000000",
11        "max_to": "1000000.00000000",
12        "rate": "0.00003451"
13      },
14      ...
15    ]
16  }
17}
COPY