Using the same authentication to the API Authenticate Method
| Param | Description |
|---|
| token | User JSON Web Token \ |
| api_key_auth | Api key delivered by Depasify |
| Param | Mandatory | Example | Type | Description |
|---|
| subscribe | Y | order | string | order |
| pair | Y | BTC/EUR | string | The symbol of the currency pair. |
| provider | Y | keyrock | string | the order book provider [keyrock, binance] |
| Param | Mandatory | Example | Type | Description |
|---|
| unsubscribe | Y | order | string | order |
| pair | Y | BTC/EUR | string | The symbol of the currency pair. |
| provider | Y | keyrock | string | the order book provider [keyrock, binance] |
<th>
Type
</th>
<th>
Object
</th>
<th>
Example
</th>
</tr>
<td>
string
</td>
<td>
</td>
<td>
BTC
</td>
</tr>
<tr>
<td>
offers
</td>
<td>
array
</td>
<td>
{ price, amount, total }
</td>
<td>
[
{
"price": string,
"amount": string,
"total": string
}
]
</td>
</tr>
<tr>
<td>
bids
</td>
<td>
array
</td>
<td>
{ price, amount, total }
</td>
<td>
[
{
"price": string,
"amount": string,
"total": string
}
]
</td>
</tr>