Валюта¶
currencies¶
Требуется авторизация | Постраничный вывод |
---|---|
Нет | Нет |
Список всех поддерживаемых системой валют (Currency).
Пример¶
requests.get('https://advgame.ru/api/v1/currencies/')
[
{
"id": 1,
"char_code": "RUB",
"value": "1.0000000000",
"name": "Российский рубль",
"min_reserve_amount": "0.0000000000"
},
{
"id": 72,
"char_code": "USD",
"value": "56.5552000000",
"name": "Доллар США",
"min_reserve_amount": "18.0000000000"
},
{
"id": 73,
"char_code": "EUR",
"value": "63.6189000000",
"name": "Евро",
"min_reserve_amount": "16.0000000000"
}
]
me/currencies¶
Требуется авторизация | Постраничный вывод |
---|---|
Да | Нет |
Список всех валют пользователя (Currency).
Пример¶
requests.get('https://advgame.ru/api/v1/me/currencies/')
[
{
"id": 1,
"char_code": "RUB",
"value": "1.0000000000",
"name": "Российский рубль",
"min_reserve_amount": "0.0000000000"
},
{
"id": 72,
"char_code": "USD",
"value": "56.5552000000",
"name": "Доллар США",
"min_reserve_amount": "18.0000000000"
},
{
"id": 73,
"char_code": "EUR",
"value": "63.6189000000",
"name": "Евро",
"min_reserve_amount": "16.0000000000"
}
]