This section give's control and information for the liquidity providers that are working with the system.
Liquidity provider can give quote prices.
Every order created in the system will also be created in the liquidity provider.
Admin logged in - can see,edit and connect to new liquidity providers.
User logged in - don't have access to liquidity providers managment.
Retrieve a list of all configured liquidities and their fee rules and supported currencies.
Successful response with liquidities data
{- "api_data": {
- "last_at": "2019-08-24T14:15:22Z",
- "total_items": 0,
- "liquidities": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "website": "string",
- "provider_id": "string",
- "limit_amount": 0,
- "settlement": "string",
- "credentials": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "created_at": "2019-08-24T14:15:22Z",
- "feerules": [
- {
- "id": "string",
- "liquidity_id": "string",
- "base_currency": "string",
- "quote_currency": "string",
- "markup_percent": 0,
- "markup_fixed": 0,
- "markup_min": 0,
- "from_volume": 0,
- "to_volume": 0,
- "side": "string",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "liquidity_currencies": [
- {
- "id": "string",
- "currency": "string",
- "side": "string",
- "type": "string",
- "credit": 0,
- "settlement_interval": 0,
- "priority": 0,
- "enabled": 0
}
]
}
]
}
}
This endpoint returns detailed information about a specific liquidity.
Liquidity details successfully retrieved
{- "api_message": "LIQUIDITY_GET_SHOW_SUCCESS",
- "api_data": {
- "id": "SXhtMXR4OGRVdEU9",
- "provider_id": "SXhtMXR4OGRVdEU9",
- "type": "EXCHANGE",
- "limit_amount": null,
- "settlement": "SCHEDULED",
- "credentials": "ADMIN",
- "created_at": "2022-03-17T12:47:19.000000Z",
- "updated_at": "2022-03-17T12:47:19.000000Z",
- "feerules": [
- {
- "id": "aVpIUWRhSkcxdTQ9",
- "liquidity_id": "SXhtMXR4OGRVdEU9",
- "base_currency": "USD",
- "base_currency_id": "bkE0RmNjbEhCUmc9",
- "quote_currency": "BNB",
- "quote_currency_id": "MTJzQmtaZnVnM1U9",
- "markup_percent": 2,
- "markup_fixed": 0
}
]
}
}