api_exchange_state_list
GET /api/exchange/state/
Este endpoint devuelve un listado de todas las criptomonedas aceptadas por kubepay y su valor al cambio en en la moneda por defecto del sistema.
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- code string required
Possible values:
<= 10 characters
- is_active boolean required
- swap_to_enabled boolean
- swap_from_enabled boolean
- swap_to_fee decimal
Possible values: Value must match regular expression
^\d{0,3}(?:\.\d{0,2})?$
- buy_enabled boolean
- buy_fee decimal
Possible values: Value must match regular expression
^\d{0,3}(?:\.\d{0,2})?$
- max_trading_quantity decimal
Possible values: Value must match regular expression
^\d{0,16}(?:\.\d{0,4})?$
Max trading quantity in default regular currency
- min_trading_quantity decimal
Possible values: Value must match regular expression
^\d{0,16}(?:\.\d{0,4})?$
Min trading quantity in default regular currency
- price string required
- price_currency string required
- price_timestamp string required
- ]
[
{
"code": "string",
"is_active": true,
"swap_to_enabled": true,
"swap_from_enabled": true,
"swap_to_fee": "string",
"buy_enabled": true,
"buy_fee": "string",
"max_trading_quantity": "string",
"min_trading_quantity": "string",
"price": "string",
"price_currency": "string",
"price_timestamp": "string"
}
]
Loading...