{"info":{"_postman_id":"655fd0ed-7500-47e6-a006-7e202bd835ab","name":"Bitdelta Public API","description":"<html><head></head><body><h2 id=\"introduction\"><strong>Introduction</strong></h2>\n<p><strong>Welcome to Bitdelta's developers API documentation. This is the official Bitdelta Exchange API documentation, and will continuously be updating. Bitdelta provides a simplified and robust REST API for integrating various features into any application. Apart from trading, Bitdelta Exchange Platform has extended its API to allow the management of multiple digital currencies, the creation of trading pairs, and the creation of new orders.</strong></p>\n<h5 id=\"api-key-setup\"><strong>API KEY SETUP</strong></h5>\n<ul>\n<li><p><strong>Some endpoints will require an API Key. Please refer to this</strong> <a href=\"https://help.bitdelta.com/hc/en-us/articles/12432649351069-How-to-Create-API-key-\">https://help.bitdelta.com/hc/en-us/articles/12432649351069-How-to-Create-API-key-</a> <strong>regarding API key creation.</strong></p>\n</li>\n<li><p><strong>Once API key is created, it is recommended to save the secret key somewhere because this will not be visible again for security reasons.</strong></p>\n</li>\n<li><p><strong>Never share your API key/secret key to ANYONE.</strong></p>\n</li>\n<li><p><strong>If the API key is accidentally shared, please delete it immediately and create a new key.</strong></p>\n</li>\n</ul>\n<h2 id=\"rest-api\"><strong>REST API</strong></h2>\n<p><strong>An API, or application programming interface is a set of rules that define how applications or devices can connect to and communicate with with each other. A REST API is an API that conforms to the design principles of REST or representational state transfer architecture style. For this reason, REST API's are sometimes referred to as RESTFUL API's.</strong></p>\n<h2 id=\"web-socket-api\"><strong>Web Socket API</strong></h2>\n<p><strong>WebSocket is a new protocol in HTML5. It is a full-duplex between client and server, meaning, communication happens to and fro between client and server. The connection can be established by a single handshake, and then the server can push the notification to client actively. The connection developed using the Web Socket lasts as long as any of the participating parties lay it off, once one of the party breaks the connection, the second party won't be able to communicate as the connection automatically breaks at its front.</strong></p>\n<p><strong>It is suggested to use Web Socket API to get data update like market data, user data and order update etc.</strong></p>\n<h2 id=\"access-urls\"><strong>Access URLs</strong></h2>\n<p><strong>For production Base URL is:</strong></p>\n<h5 id=\"rest-api-url-for-public-api\"><strong>REST API URL FOR PUBLIC API</strong></h5>\n<p><a href=\"https://\">https://public-api.bitdelta.com</a></p>\n<h5 id=\"rest-api-url-for-protected-api\"><strong>REST API URL FOR PROTECTED API</strong></h5>\n<p><a href=\"https://\">https://api.bitdelta.com</a></p>\n<h5 id=\"websocket\"><strong>WebSocket</strong></h5>\n<p><strong><code>wss://api.bitdelta.com</code></strong></p>\n<h2 id=\"general-information-on-endpoints\"><strong>General Information on Endpoints</strong></h2>\n<ul>\n<li><strong>For GET endpoints, parameters must be sent as a query string.</strong></li>\n<li><strong>For POST, PUT, and DELETE endpoints, the parameters may be sent as a query string or in the request body with content type application/json. You may mix parameters between both the query string and request body if you wish to do so.</strong></li>\n<li><strong>Parameters may be sent in any order.</strong></li>\n<li><strong>If a parameter sent in both the query string and request body, the query string parameter will be used.</strong></li>\n</ul>\n<h2 id=\"ip-limits\"><strong>IP Limits</strong></h2>\n<ul>\n<li><strong>When a 429 is received, it is your obligation as an API to back off and not spam the API.</strong></li>\n<li><strong>Repeatedly violating the rate limits and/or failing to back off after receiving multiple 429 errors will result in an automated IP ban (HTTP Error Code 418)</strong></li>\n<li><strong>IP bans are tracked and scale in duration for repeat offenders from 2 minutes to 3 days.</strong></li>\n<li><strong>A retry-after header is sent with a 418 or 429 response and will give the number of seconds to wait in case of a 429 response code, to avoid a ban or in case of a 418, wait until the ban is over.</strong></li>\n<li><strong>We recommend using the websocket for getting data as much as possible, as this will not count the request rate limit.</strong></li>\n</ul>\n<h2 id=\"headers\"><strong>Headers</strong></h2>\n<ol>\n<li><strong>Accept-language For langague specific content from server</strong></li>\n<li><strong>Device For device specific response, values will be either web/mobile</strong></li>\n<li><strong>x-api-key = api key of user's account</strong></li>\n<li><strong>secret-key = secret key of user's account</strong></li>\n</ol>\n<h2 id=\"parameters\"><strong>Parameters</strong></h2>\n<p><strong>For the GET, DELETE request, all query parameters need to be included in the request url. (e.g. /api/v1/pair?currency=BTC)</strong></p>\n<p><strong>For the POST, PUT request, all query parameters need to be included in the request body with JSON. (e.g. {\"currency\":\"BTC\"}). Do not include extra spaces in JSON strings.</strong></p>\n<h2 id=\"request-format\"><strong>Request Format</strong></h2>\n<p><strong>The API is restful and there are two methods: GET and POST.</strong></p>\n<ul>\n<li><strong>GET, DELETE request: All parameters are included in URL</strong></li>\n<li><strong>POST, PUT request: All parameters are formatted as JSON and put int the request body</strong></li>\n</ul>\n<h2 id=\"response-format\"><strong>Response Format</strong></h2>\n<p><strong>The response is JSON format.There are five fields in the top level:</strong> <strong><code>statusCode</code>****,</strong> <strong><code>message</code></strong> <strong>,</strong> <strong><code>statusText</code></strong> <strong>,</strong> <strong><code>timestamp</code></strong> <strong>and</strong> <strong><code>data</code>****.</strong></p>\n<p><strong>Below is an example of response:</strong></p>\n<p><strong>json</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-less\">{ \"statusCode\": 200, \"data\": // per API response data in nested JSON object \"message\": \"Forbidden\", \"statusText\": \"FORBIDDEN\", \"timestamp\": \"2022-04-18T12:11:17.146Z\" }\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>statusCode</strong></td>\n<td><strong>int</strong></td>\n<td><strong>Status HTTP response of API response</strong></td>\n</tr>\n<tr>\n<td><strong>message</strong></td>\n<td><strong>string</strong></td>\n<td><strong>Generic message about API response e.g User data updated successfully</strong></td>\n</tr>\n<tr>\n<td><strong>statusText</strong></td>\n<td><strong>string</strong></td>\n<td><strong>API response equivalent text e.g. FORBIDDEN, IP_VERIFICATION_REQUIRED</strong></td>\n</tr>\n<tr>\n<td><strong>timestamp</strong></td>\n<td><strong>date</strong></td>\n<td><strong>UTC Timestamp based on server</strong></td>\n</tr>\n<tr>\n<td><strong>data</strong></td>\n<td><strong>object/array</strong></td>\n<td><strong>The body data in response</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Errors:</strong></p>\n<p><strong>When errors occur, the HTTP error code or system error code will be returned. The body will also contain a message parameter indicating the cause.</strong></p>\n<h3 id=\"http-error-status-codes\"><strong>HTTP error status codes</strong></h3>\n<p><strong>json</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"statusCode\": 500, \"data\": \"\", \"message\": \"Forbidden\", \"statusText\": \"FORBIDDEN\", \"timestamp\": \"2022-04-18T12:11:17.146Z\" }\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Meaning</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>400</strong></td>\n<td><strong>Bad Request -- Invalid request format.</strong></td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td><strong>Unauthorized -- Invalid/Expired User Authentication token. You may need to get new JWT User Authentication token by using existing refresh token If valid</strong></td>\n</tr>\n<tr>\n<td><strong>403</strong></td>\n<td><strong>Forbidden -- User Authentication token and refresh token expired. You need to login again to get new User Authentication token</strong></td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td><strong>Not Found -- The specified resource could not be found.</strong></td>\n</tr>\n<tr>\n<td><strong>406</strong></td>\n<td><strong>Guest/ Annonymous token expired. You need to get new guest/anonynomus token to access API</strong></td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td><strong>Internal Server Error -- We had a problem with our server. Try again later.</strong></td>\n</tr>\n<tr>\n<td><strong>503</strong></td>\n<td><strong>Service Unavailable -- We're temporarily offline for maintenance. Please try again later.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"system-error-codes-network-status-code-http-status-codewould-be-400-but-statustext--statuscode-would-be-following\"><strong>System error codes (Network status code (HTTP Status code)would be 400 but statusText &amp; statusCode would be following)</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>statusCode</strong></th>\n<th><strong>statusText</strong></th>\n<th><strong>Meaning</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>410</strong></td>\n<td><strong>IP_VERIFICATION_REQUIRED</strong></td>\n<td><strong>When IP address is not verified, an OTP will be sent to the user, you need to open the popup to input verification code</strong></td>\n</tr>\n<tr>\n<td><strong>411</strong></td>\n<td><strong>TFA_REQUIRED</strong></td>\n<td><strong>When user enabled his/her 2FA, open popup to enter 2FA code</strong></td>\n</tr>\n<tr>\n<td><strong>412</strong></td>\n<td><strong>INVALID_TWOFA_SESSION</strong></td>\n<td><strong>2FA session expired, redirect user to login page</strong></td>\n</tr>\n<tr>\n<td><strong>413</strong></td>\n<td><strong>INVALID_PASSWORD_SESSION</strong></td>\n<td><strong>Password reset session expired, redirect user to forgot password page again</strong></td>\n</tr>\n<tr>\n<td><strong>414</strong></td>\n<td><strong>PUBLIC_KEY_NOT_FOUND</strong></td>\n<td><strong>Device public key not found on server. Logout user and redirect user to login</strong></td>\n</tr>\n<tr>\n<td><strong>415</strong></td>\n<td><strong>VERIFICATION_REQUIRED</strong></td>\n<td><strong>User login email or phone number is not verified, an OTP will be sent to the user, open popup to validate OTP</strong></td>\n</tr>\n<tr>\n<td><strong>417</strong></td>\n<td><strong>INVALID_TWOFA_CODE</strong></td>\n<td><strong>Invalid 2FA code</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>If the returned HTTP status code is 400, whereas the operation failed, an error will occur. You can check the above error code for details.</strong></p>\n<h2 id=\"success\"><strong>Success</strong></h2>\n<p><strong>A successful response is indicated by an HTTP status code 200. The success response is as follows:</strong></p>\n<p><strong>View Morejson</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \"statusCode\": 200, \"data\": [ { \"lang\": \"English\", \"slug\": \"en\", \"default\": true, \"rtl\": false }, { \"lang\": \"हिन्दी\", \"slug\": \"hi\", \"default\": false, \"rtl\": false }, { \"lang\": \"عربى\", \"slug\": \"ar\", \"default\": false, \"rtl\": true } ], \"message\": \"Request Successfully completed\", \"statusText\": \"SUCCESS\", \"timestamp\": \"2022-06-15T06:04:08.607Z\" }\n\n</code></pre>\n<h3 id=\"pagination\"><strong>Pagination</strong></h3>\n<p><strong>Pagination allows for fetching results with the current page and is well suited for real time data. Endpoints like /api/v1/open-orders, /api/v1/orders, /api/v1/trades, will return the latest items by default (50 pages in total). To retrieve more results, users should specify the currentPage number in the subsequent requests to turn the page based on the data previously returned.</strong></p>\n<h4 id=\"parameters-1\"><strong>PARAMETERS</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Default</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>page</strong></td>\n<td><strong>1</strong></td>\n<td><strong>Current request page.</strong></td>\n</tr>\n<tr>\n<td><strong>limit</strong></td>\n<td><strong>15</strong></td>\n<td><strong>Number of results per request. Minimum is 1, maximum is 100.</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example\"><strong>Example</strong></h4>\n<p><strong><code>GET /api/v1/orders?page=1&amp;limit=50</code></strong></p>\n<h3 id=\"rate-limit\"><strong>Rate Limit</strong></h3>\n<p><strong>The /api/v1/\\\\\\\\\\\\\\\\\\\\\\\\\\\\* endpoints adopt access limiting rules.</strong></p>\n<ul>\n<li><strong>Endpoints related to /api/v1/\\\\\\\\\\\\\\\\\\\\\\\\\\\\*:</strong></li>\n<li><strong>According to IP limit, each are independent.</strong></li>\n<li><strong>Endpoints share the 2500 per 5 minute limit based on IP.</strong></li>\n</ul>\n<h2 id=\"public-api-definition\"><strong>Public API Definition</strong></h2>\n<h3 id=\"terminology\"><strong>Terminology</strong></h3>\n<p><strong>These terms will be used throughout the documentation, so it is recommended especially for new users to read to help their understanding of the API.</strong></p>\n<h4 id=\"order-side-s\"><strong>Order side (s)</strong></h4>\n<ul>\n<li><strong>BUY = 0</strong></li>\n<li><strong>SELL = 1</strong></li>\n</ul>\n<h4 id=\"order-type\"><strong>Order Type</strong></h4>\n<ul>\n<li><strong>m = market order</strong></li>\n<li><strong>l = limit order</strong></li>\n<li><strong>sl = stop limit order</strong></li>\n</ul>\n<h4 id=\"tradechart-api\"><strong>Trade/Chart API</strong></h4>\n<ul>\n<li><strong>open = open price of pair</strong></li>\n<li><strong>high = highest price of pair in given time duration</strong></li>\n<li><strong>low = lowest price of pair in given time duration</strong></li>\n<li><strong>close = closing price of pair or latest price or last price</strong></li>\n<li><strong>vol = volume of pair in USDT</strong></li>\n</ul>\n<h4 id=\"precision\"><strong>Precision</strong></h4>\n<ul>\n<li><strong>group_precision price precision of a symbol</strong></li>\n<li><strong>bamount amount precision of symbol</strong></li>\n<li><strong>group_precision + bamount for total of symbol</strong></li>\n</ul>\n<p><strong>Kline/CANDLESTICK CHART INTERVALS:</strong></p>\n<p><strong>m-minutes, h-hours, d-days</strong></p>\n<ul>\n<li><strong>1m</strong></li>\n<li><strong>5m</strong></li>\n<li><strong>15m</strong></li>\n<li><strong>30m</strong></li>\n<li><strong>1h</strong></li>\n<li><strong>4h</strong></li>\n<li><strong>1d</strong></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29064556","collectionId":"655fd0ed-7500-47e6-a006-7e202bd835ab","publishedId":"2s9Xy3rWSo","public":true,"customColor":{"top-bar":"ffffff","right-sidebar":"303030","highlight":"155ff6"},"publishDate":"2024-04-04T09:33:10.000Z"},"item":[{"name":"Historic Data","item":[{"name":"Get tradingview chart ","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"531315c4-3994-48b1-b0d6-331bb7c38bd7"}}],"id":"18157632-e061-408c-b22b-26fba66a9e66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/tradingview/history?symbol=BTCUSDT&resolution=1h&from=1655815315&to=1655901715","description":"<p>This API will be used to get trading view chart data</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","tradingview","history"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"resolution","value":"1h"},{"key":"from","value":"1655815315"},{"key":"to","value":"1655901715"}],"variable":[]}},"response":[{"id":"bdee7a3d-4769-4378-a5d2-376d48b6d6d5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/tradingview/history?symbol=BTCUSDT&resolution=1h&from=1655815315&to=1655901715","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","tradingview","history"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"resolution","value":"1h"},{"key":"from","value":"1655815315"},{"key":"to","value":"1655901715"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        [\n            1655816400,\n            21210.64,\n            21758.25,\n            20890.02,\n            21727.42,\n            843.95824\n        ],\n        [\n            1655820000,\n            21511.21,\n            21817.51,\n            21321.37,\n            21490.84,\n            838.313606\n        ],\n        [\n            1655823600,\n            21486.02,\n            21712.29,\n            21231.68,\n            21499.15,\n            846.758216\n        ],\n        [\n            1655827200,\n            21285.21,\n            21658.14,\n            21244.92,\n            21508.52,\n            824.218466\n        ],\n        [\n            1655830800,\n            21294.5,\n            21567.3,\n            21088.8,\n            21133.69,\n            828.40452\n        ],\n        [\n            1655834400,\n            21348.86,\n            21363.28,\n            20970.27,\n            21205.72,\n            865.589658\n        ],\n        [\n            1655838000,\n            20994.5,\n            21419.2,\n            20762.43,\n            20799.79,\n            858.885128\n        ],\n        [\n            1655841600,\n            20775.65,\n            21084.23,\n            20569.88,\n            20964.16,\n            858.154386\n        ],\n        [\n            1655845200,\n            20755.56,\n            21147.71,\n            20703.5,\n            20873.14,\n            854.698142\n        ],\n        [\n            1655848800,\n            20873.14,\n            21106.85,\n            20630.06,\n            20795.09,\n            892.991238\n        ],\n        [\n            1655852400,\n            20804.07,\n            21045.68,\n            20447.93,\n            20827.13,\n            886.946492\n        ],\n        [\n            1655856000,\n            20624.43,\n            20844.96,\n            20354.49,\n            20484.76,\n            874.439134\n        ],\n        [\n            1655859600,\n            20484.76,\n            20820.25,\n            20291.02,\n            20513.29,\n            886.27357\n        ],\n        [\n            1655863200,\n            20308.15,\n            20630.88,\n            20228.36,\n            20568.88,\n            875.084424\n        ],\n        [\n            1655866800,\n            20363.19,\n            20670.43,\n            20161.09,\n            20421.2,\n            874.189844\n        ],\n        [\n            1655870400,\n            20213.8,\n            20571.84,\n            20167.07,\n            20537.26,\n            852.352368\n        ],\n        [\n            1655874000,\n            20332.88,\n            20697.8,\n            20265.54,\n            20271.24,\n            833.775388\n        ],\n        [\n            1655877600,\n            20271.24,\n            20546.63,\n            19879.31,\n            20213.55,\n            903.813406\n        ],\n        [\n            1655881200,\n            20011.41,\n            20351.25,\n            19868.6,\n            20197.79,\n            877.132908\n        ],\n        [\n            1655884800,\n            20197.79,\n            20355.53,\n            19880.7,\n            20130.56,\n            865.974076\n        ],\n        [\n            1655888400,\n            20133.88,\n            20599.4,\n            20129.58,\n            20341.75,\n            888.751474\n        ],\n        [\n            1655892000,\n            20341.75,\n            20652.75,\n            20260.85,\n            20522.42,\n            884.408162\n        ],\n        [\n            1655895600,\n            20320.7,\n            20767.06,\n            20293.6,\n            20611.32,\n            876.56756\n        ],\n        [\n            1655899200,\n            20403.76,\n            20684.48,\n            20020.97,\n            20471.05,\n            864.032104\n        ]\n    ],\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:38:57.884Z\"\n}"}],"_postman_id":"18157632-e061-408c-b22b-26fba66a9e66"},{"name":"Get Orderbook for a symbol","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"173d5ce1-e4cf-4c89-b7d2-4e8cc1902aee"}}],"id":"67e8f6ec-8b08-47a6-9606-c8fb828080cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/orderbook?symbol=BTCUSDT&level=2&depth=50","description":"<p>This API will be used to get orderbook of a pair</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","orderbook"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"level","value":"2"},{"key":"depth","value":"50"}],"variable":[]}},"response":[{"id":"7a4302dd-442f-44a9-b4b1-47977cdcc7cb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/orderbook?symbol=LTC_USDT&level=2&depth=50","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","orderbook"],"query":[{"key":"symbol","value":"LTC_USDT"},{"key":"level","value":"2"},{"key":"depth","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"timestamp\": 1686037153655,\n    \"bids\": [\n        [\n            \"87.46\",\n            \"0.01\"\n        ],\n        [\n            \"87.44\",\n            \"0.434\"\n        ],\n        [\n            \"87.33\",\n            \"5.767\"\n        ],\n        [\n            \"87.24\",\n            \"6.489\"\n        ],\n        [\n            \"87.2\",\n            \"7.097\"\n        ],\n        [\n            \"87.17\",\n            \"8.016\"\n        ],\n        [\n            \"87.14\",\n            \"0.41\"\n        ],\n        [\n            \"87.09\",\n            \"8.483\"\n        ],\n        [\n            \"87.04\",\n            \"0.277\"\n        ],\n        [\n            \"87.02\",\n            \"9.806\"\n        ]\n    ],\n    \"asks\": [\n        [\n            \"87.61\",\n            \"0.371\"\n        ],\n        [\n            \"87.62\",\n            \"5.729\"\n        ],\n        [\n            \"87.64\",\n            \"6.495\"\n        ],\n        [\n            \"87.67\",\n            \"0.187\"\n        ],\n        [\n            \"87.73\",\n            \"7.131\"\n        ],\n        [\n            \"87.73\",\n            \"7.84\"\n        ],\n        [\n            \"87.74\",\n            \"9.056\"\n        ],\n        [\n            \"87.77\",\n            \"9.104\"\n        ],\n        [\n            \"87.81\",\n            \"0.302\"\n        ],\n        [\n            \"87.85\",\n            \"10.124\"\n        ]\n    ]\n}"}],"_postman_id":"67e8f6ec-8b08-47a6-9606-c8fb828080cc"}],"id":"d0cfed11-70bd-4fc7-9ea7-5c31a3dbe16e","description":"<p>K-lines, Order book and other historical data are downloadable in just one click</p>\n","_postman_id":"d0cfed11-70bd-4fc7-9ea7-5c31a3dbe16e"},{"name":"Wallet","item":[{"name":"Get User SPOT Balance","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"b7cb6fa0-f4cb-4edd-9dfd-2d3cda60d6c0"}}],"id":"4d707fef-52fb-4be9-9b04-561c0dfd04b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/balance","description":"<p>This API will be used to get user's spot balance</p>\n","urlObject":{"protocol":"https","path":["api","v1","balance"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"40404bcc-3366-4737-a1d6-e2e2ae350f57","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":"https://public-api.bitdelta.com/api/v1/balance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        {\n            \"currency\": \"BTC\",\n            \"amount\": 1000,\n            \"name\": \"Bitcoin\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"ETH\",\n            \"amount\": 1000,\n            \"name\": \"Ethereum\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"LTC\",\n            \"amount\": 899.75446656,\n            \"name\": \"Litecoin\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"XRP\",\n            \"amount\": 1050.9235,\n            \"name\": \"Ripple\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"BCH\",\n            \"amount\": 880,\n            \"name\": \"Bitcoin Cash\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"USDT\",\n            \"amount\": 6176.75668195,\n            \"name\": \"Tether\",\n            \"inorder\": 1\n        },\n        {\n            \"currency\": \"UNI\",\n            \"amount\": 1000,\n            \"name\": \"UNI\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"SAND\",\n            \"amount\": 1000,\n            \"name\": \"The Sandbox\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"USDC\",\n            \"amount\": 1000,\n            \"name\": \"USDC\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"SHIB\",\n            \"amount\": 1000,\n            \"name\": \"SHIBA INU\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"BNB\",\n            \"amount\": 1000,\n            \"name\": \"Binance Coin\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"MATIC\",\n            \"amount\": 1000,\n            \"name\": \"Matic (Polygon)\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"ENJ\",\n            \"amount\": 1000,\n            \"name\": \"Enjin Coin\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"1INCH\",\n            \"amount\": 1000,\n            \"name\": \"1inch Network\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"AAVE\",\n            \"amount\": 1000,\n            \"name\": \"AAVE\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"ADA\",\n            \"amount\": 1000,\n            \"name\": \"Cardano\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"DASH\",\n            \"amount\": 1000,\n            \"name\": \"Dash\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"ALICE\",\n            \"amount\": 1000,\n            \"name\": \"MyNeighborAlice\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"LINK\",\n            \"amount\": 1000,\n            \"name\": \"Chainlink\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"XLM\",\n            \"amount\": 1000,\n            \"name\": \"Stellar\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"ETC\",\n            \"amount\": 1000,\n            \"name\": \"Ethereum Classic\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"DOGE\",\n            \"amount\": 1000,\n            \"name\": \"Doge Coin\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"DOT\",\n            \"amount\": 1000,\n            \"name\": \"Polkadot\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"LUNA\",\n            \"amount\": 1000,\n            \"name\": \"Terra Luna\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"FTM\",\n            \"amount\": 1000,\n            \"name\": \"Fantom\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"LRC\",\n            \"amount\": 1000,\n            \"name\": \"Loopring\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"GALA\",\n            \"amount\": 1000,\n            \"name\": \"Gala\",\n            \"inorder\": 0\n        },\n        {\n            \"currency\": \"AXS\",\n            \"amount\": 1000,\n            \"name\": \"Axie Infinity\",\n            \"inorder\": 0\n        }\n    ],\n    \"message\": \"Request Successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2022-06-22T11:12:40.991Z\"\n}"}],"_postman_id":"4d707fef-52fb-4be9-9b04-561c0dfd04b0"},{"name":"Get User Withdrawal Transaction","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"acff7225-3937-4cbf-8f27-cc6aa93b3b21"}}],"id":"c84062d5-ccb9-4ad2-8a39-87c5f55b57a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/transaction?type=deposit&page=1&limit=10&coin=BTC&from=1643719908000&to=1654519908000","description":"<p>This API will be used to get withdrawal transaction</p>\n","urlObject":{"protocol":"https","path":["api","v1","transaction"],"host":["public-api","bitdelta","com"],"query":[{"key":"type","value":"deposit"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"coin","value":"BTC"},{"key":"from","value":"1643719908000"},{"key":"to","value":"1654519908000"}],"variable":[]}},"response":[{"id":"e068f057-8dbf-467e-837f-b78e073f669f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/transaction?type=deposit&page=1&limit=10&coin=BTC&from=1643719908000&to=1654519908000","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","transaction"],"query":[{"key":"type","value":"deposit"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"coin","value":"BTC"},{"key":"from","value":"1643719908000"},{"key":"to","value":"1654519908000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"totalItems\": 5,\n        \"currentPage\": 1,\n        \"totalPages\": 1,\n        \"result\": [\n            {\n                \"id\": 12158,\n                \"coin\": \"USDT\",\n                \"amount\": \"50\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2023-05-01T13:29:52.923Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4351,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-07T13:39:33.206Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4349,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-07T13:38:13.129Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4236,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-03T09:52:56.886Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4176,\n                \"coin\": \"USDT\",\n                \"amount\": \"70\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-09-29T09:13:31.837Z\",\n                \"fee\": 0\n            }\n        ]\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:40:11.237Z\"\n}"}],"_postman_id":"c84062d5-ccb9-4ad2-8a39-87c5f55b57a5"},{"name":"Get User Deposit Transaction","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"646d6150-5e32-4339-915b-33b8aee2d390"}}],"id":"72c0cdae-142a-4891-a70a-42f3c4f08c8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/transaction?type=deposit&page=1&limit=10&coin=BTC&from=1643719908000&to=1654519908000","description":"<p>This API will be used to get deposit transaction</p>\n","urlObject":{"protocol":"https","path":["api","v1","transaction"],"host":["public-api","bitdelta","com"],"query":[{"key":"type","value":"deposit"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"coin","value":"BTC"},{"key":"from","value":"1643719908000"},{"key":"to","value":"1654519908000"}],"variable":[]}},"response":[{"id":"7ac1c728-efcb-43db-b8d6-283b247b6e95","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/transaction?type=deposit&page=1&limit=10&coin=BTC&from=1643719908000&to=1654519908000","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","transaction"],"query":[{"key":"type","value":"deposit"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"coin","value":"BTC"},{"key":"from","value":"1643719908000"},{"key":"to","value":"1654519908000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"totalItems\": 5,\n        \"currentPage\": 1,\n        \"totalPages\": 1,\n        \"result\": [\n            {\n                \"id\": 12158,\n                \"coin\": \"USDT\",\n                \"amount\": \"50\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2023-05-01T13:29:52.923Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4351,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-07T13:39:33.206Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4349,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-07T13:38:13.129Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4236,\n                \"coin\": \"USDT\",\n                \"amount\": \"20\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-10-03T09:52:56.886Z\",\n                \"fee\": 0\n            },\n            {\n                \"id\": 4176,\n                \"coin\": \"USDT\",\n                \"amount\": \"70\",\n                \"type\": \"deposit\",\n                \"status\": \"Completed\",\n                \"txhash\": \"Internal transfer\",\n                \"txid\": \"Internal transfer\",\n                \"timestamp\": \"2022-09-29T09:13:31.837Z\",\n                \"fee\": 0\n            }\n        ]\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:40:59.949Z\"\n}"}],"_postman_id":"72c0cdae-142a-4891-a70a-42f3c4f08c8d"},{"name":"Generate Deposit address","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"e2cbed6e-31ba-406e-93f5-53c4d296f770"}}],"id":"adca4b9e-bf2c-4d1b-b61a-fcfe43eb05a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coin\":\"BTC\",\n    \"network\":\"Bitcoin\"\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/generate-address","description":"<p>This API will be used to generate deposit address for a currency</p>\n","urlObject":{"protocol":"https","path":["api","v1","generate-address"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"7a0e737e-d805-4ec9-b0fd-12e27267b6ed","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"coin\":\"BTC\",\n    \"network\":\"Bitcoin\"\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/generate-address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"coin\": \"BTC\",\n        \"address\": \"bc1q0uq3j998my8nsl6j9w43pdd6knyzqsyy53qwfw\",\n        \"legacyaddress\": \"1CaY8ekUkt4HF7piz4FuWH5jm81UUuhVz5\",\n        \"status\": \"completed\",\n        \"tag\": \"\",\n        \"name\": \"Bitcoin\",\n        \"dmin\": 0.0005,\n        \"dmax\": 100000,\n        \"deposit\": true,\n        \"dfee\": 0\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:36:50.701Z\"\n}"}],"_postman_id":"adca4b9e-bf2c-4d1b-b61a-fcfe43eb05a9"}],"id":"7d7812a5-76b0-42b3-ab01-7aebb49ba84f","description":"<p>These are all Wallet related API's</p>\n","_postman_id":"7d7812a5-76b0-42b3-ab01-7aebb49ba84f"},{"name":"Spot trading","item":[{"name":"Place limit order","id":"bab754b9-3bfb-4a88-b6d0-d0eb827da4d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\":1,\n    \"symbol\":\"BTCUSDT\",\n    \"price\":25000,\n    \"amount\":0.1\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/limit-order","description":"<p>This API will be used to place a limit order</p>\n","urlObject":{"protocol":"https","path":["api","v1","limit-order"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"68d60ad9-9f45-477c-ae3b-84d4062dd325","name":"SUCCESS","originalRequest":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\":1,\n    \"symbol\":\"BTCUSDT\",\n    \"price\":25000,\n    \"amount\":0.1\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/order/limit-order"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"data\": {\n        \"order_id\": \"2267993162\"\n    },\n    \"message\": \"Request Successfully completed\",\n    \"statusText\": \"CREATED\",\n    \"timestamp\": \"2022-06-01T09:17:01.854Z\"\n}"}],"_postman_id":"bab754b9-3bfb-4a88-b6d0-d0eb827da4d1"},{"name":"Place market order","id":"65fa4df2-4a31-4fa0-8f6b-ff2fe9ffbe21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\": 1,\n    \"symbol\": \"BCHUSDT\",\n    \"amount\": 100\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/market-order","description":"<p>This API will be used to place a market order</p>\n","urlObject":{"protocol":"https","path":["api","v1","market-order"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"c5ee222b-0741-4638-9ed2-7f35f541ae9c","name":"SUCCESS","originalRequest":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\": 1,\n    \"symbol\": \"BCHUSDT\",\n    \"amount\": 100\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/market-order"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"data\": {\n        \"order_id\": \"1974220523\"\n    },\n    \"message\": \"Successfully completed\",\n    \"statusText\": \"CREATED\",\n    \"timestamp\": \"2022-05-17T08:22:05.615Z\"\n}"}],"_postman_id":"65fa4df2-4a31-4fa0-8f6b-ff2fe9ffbe21"},{"name":"Place SL order","id":"90698640-83eb-4c6c-9a50-e2f7d3f39c77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\": 1,\n    \"symbol\": \"BCHUSDT\",\n    \"price\": 1,\n    \"amount\": 1,\n    \"stop\": 2\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/sl-order","description":"<p>This API will be used to place an SL order</p>\n","urlObject":{"protocol":"https","path":["api","v1","sl-order"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"af65e900-0cb3-409f-bc7e-287f7ced5c6b","name":"SUCCESS","originalRequest":{"method":"POST","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\": 1,\n    \"symbol\": \"BCHUSDT\",\n    \"price\": 1,\n    \"amount\": 1,\n    \"stop\": 2\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/sl-order"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"data\": {\n        \"order_id\": \"1974220523\"\n    },\n    \"message\": \"Successfully completed\",\n    \"statusText\": \"CREATED\",\n    \"timestamp\": \"2022-05-17T08:22:05.615Z\"\n}"}],"_postman_id":"90698640-83eb-4c6c-9a50-e2f7d3f39c77"},{"name":"Cancel one open orders","id":"1836d5f5-2ddf-4ad8-afd6-7cbfa14cd14b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\":0,\n    \"trade_id\":1102\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-order","description":"<p>This API will be used to cancel an open order</p>\n","urlObject":{"protocol":"https","path":["api","v1","cancel-order"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"3dcf15b6-8106-4644-9732-6401d8f40dd4","name":"SUCCESS","originalRequest":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"side\":0,\n    \"trade_id\":1102\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-order"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": \"\",\n    \"message\": \"Successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2022-05-17T13:42:07.725Z\"\n}"}],"_postman_id":"1836d5f5-2ddf-4ad8-afd6-7cbfa14cd14b"},{"name":"Cancel SL orders","id":"f390f205-2c95-4a02-b8f2-f500271b8586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"trade_id\":1760522501\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-slorder","description":"<p>This API will be used to cancel an SL order</p>\n","urlObject":{"protocol":"https","path":["api","v1","cancel-slorder"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"e90b18ea-0114-4f94-8d7d-4f55c640ab66","name":"SUCCESS","originalRequest":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"trade_id\":1760522501\n}","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-slorder"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": \"\",\n    \"message\": \"Successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2022-05-17T13:42:07.725Z\"\n}"}],"_postman_id":"f390f205-2c95-4a02-b8f2-f500271b8586"},{"name":"Get User Trades","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"1dfbc2e1-8e20-4c30-9db3-64f530f6852c"}}],"id":"388af9de-5683-40e1-b914-959b5c0aa06d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/trade-history?symbol=BCHUSDT&page=1&limit=10&from=345436854&to=444237852","description":"<p>This API will be used to get user specific trades</p>\n","urlObject":{"protocol":"https","path":["api","v1","trade-history"],"host":["public-api","bitdelta","com"],"query":[{"key":"symbol","value":"BCHUSDT"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"from","value":"345436854"},{"key":"to","value":"444237852"}],"variable":[]}},"response":[{"id":"6907d7f2-8529-482d-a0f4-26e7aa70b8ac","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/trade-history?symbol=BCHUSDT&page=1&limit=10&from=345436854&to=444237852","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","trade-history"],"query":[{"key":"symbol","value":"BCHUSDT"},{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"from","value":"345436854"},{"key":"to","value":"444237852"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"result\": [\n            {\n                \"id\": \"403223533\",\n                \"tradeid\": \"47232424615\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BDTPOINT\",\n                \"p\": 26408.55,\n                \"q\": 0.0005,\n                \"fee\": \"0\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0.0198,\n                \"s\": 1,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:47:29.764Z\",\n                \"feeString\": \"0.0198 BDTPOINT\"\n            },\n            {\n                \"id\": \"403219216\",\n                \"tradeid\": \"47232357629\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26369.85,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:35:16.499Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403217256\",\n                \"tradeid\": \"47232329043\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"USDT\",\n                \"p\": 26365.15,\n                \"q\": 0.0005,\n                \"fee\": \"0.0197738625\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 1,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:29:54.661Z\",\n                \"feeString\": \"0.0197738625 USDT\"\n            },\n            {\n                \"id\": \"403211776\",\n                \"tradeid\": \"47232246837\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26307.24,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:14:58.886Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403211662\",\n                \"tradeid\": \"47232245212\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26323.19,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:14:38.586Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403211602\",\n                \"tradeid\": \"47232244301\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26320.76,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:14:27.428Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403206175\",\n                \"tradeid\": \"47232173811\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"USDT\",\n                \"p\": 26365.27,\n                \"q\": 0.001,\n                \"fee\": \"0.039547905\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 1,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T14:01:20.502Z\",\n                \"feeString\": \"0.039547905 USDT\"\n            },\n            {\n                \"id\": \"403199612\",\n                \"tradeid\": \"47232088671\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26325.8,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T13:45:20.099Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403199080\",\n                \"tradeid\": \"47232080000\",\n                \"ordertype\": \"m\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26328.62,\n                \"q\": 0.0004,\n                \"fee\": \"0.0000006\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T13:43:39.108Z\",\n                \"feeString\": \"0.0000006 BTC\"\n            },\n            {\n                \"id\": \"403194296\",\n                \"tradeid\": \"47231975052\",\n                \"ordertype\": \"l\",\n                \"feecoin\": \"BTC\",\n                \"p\": 26379.65,\n                \"q\": 0.00076,\n                \"fee\": \"0.00000114\",\n                \"tokenfee\": 0,\n                \"rewardfee\": 0,\n                \"s\": 0,\n                \"symbol\": \"BTCUSDT\",\n                \"currency1\": \"BTC\",\n                \"currency2\": \"USDT\",\n                \"timestamp\": \"2023-05-25T13:33:27.484Z\",\n                \"feeString\": \"0.00000114 BTC\"\n            }\n        ],\n        \"totalItems\": 35,\n        \"currentPage\": 1,\n        \"totalPages\": 4\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:43:17.605Z\"\n}"}],"_postman_id":"388af9de-5683-40e1-b914-959b5c0aa06d"},{"name":"Cancel All Open Limit orders","id":"9541a1a1-0058-411a-b35c-1bea796af5a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-all-order","description":"<p>This API will be used to cancel all open market and limit orders</p>\n","urlObject":{"protocol":"https","path":["api","v1","cancel-all-order"],"host":["public-api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"b6111905-39e9-4515-9ff9-19997a387d91","name":"SUCCESS","originalRequest":{"method":"PUT","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/cancel-all-order"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": \"\",\n    \"message\": \"Successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2022-05-17T13:42:07.725Z\"\n}"}],"_postman_id":"9541a1a1-0058-411a-b35c-1bea796af5a6"},{"name":"Open orders (Limit orders)","id":"a892c7a3-0290-4315-82be-e06281f15a45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/open-orders?page=1&limit=10&from=123456&to=213456&symbol=BTCUSDT","description":"<p>This API will be used to get the list of limit open orders. If you want to get all open symbols open order don't pass symbol param.</p>\n","urlObject":{"protocol":"https","path":["api","v1","open-orders"],"host":["public-api","bitdelta","com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"from","value":"123456"},{"key":"to","value":"213456"},{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"49ddf335-89f0-4ec0-9a9b-6d8015103489","name":"SUCCESS","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/open-orders?page=1&limit=10&from=123456&to=213456&symbol=BTCUSDT","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","open-orders"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"from","value":"123456"},{"key":"to","value":"213456"},{"key":"symbol","value":"BTCUSDT"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"result\": [\n            {\n                \"id\": \"47321330932\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-06-06T09:59:06.206Z\",\n                \"p\": \"26000\",\n                \"q\": 0.00124,\n                \"oq\": 0.00124,\n                \"type\": \"l\",\n                \"s\": 1,\n                \"total\": \"32.24 USDT\",\n                \"status\": \"Pending\",\n                \"avgprice\": \"26000\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            }\n        ],\n        \"totalItems\": 1,\n        \"currentPage\": 1,\n        \"totalPages\": 1\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T09:59:09.284Z\"\n}"}],"_postman_id":"a892c7a3-0290-4315-82be-e06281f15a45"},{"name":"Order History","id":"e0319f1c-2494-4821-b8c1-1e9a651dc668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/order-history?page=1&limit=20&symbol=BTCUSDT&side=0","description":"<p>This API will be used to get order history of a user. All params are optional. Side - 0 means BUY 1 - mean SELL</p>\n","urlObject":{"protocol":"https","path":["api","v1","order-history"],"host":["public-api","bitdelta","com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"},{"key":"symbol","value":"BTCUSDT"},{"key":"side","value":"0"}],"variable":[]}},"response":[{"id":"9ee864a2-9608-4715-9db9-3cfe65075fe1","name":"SUCCESS","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/order-history?page=1&limit=20&symbol=BTCUSDT&side=0","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","order-history"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"20"},{"key":"symbol","value":"BTCUSDT"},{"key":"side","value":"0"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"result\": [\n            {\n                \"id\": \"47321330932\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-06-06T09:59:06.198Z\",\n                \"p\": \"26000\",\n                \"q\": 0.00124,\n                \"type\": \"l\",\n                \"status\": \"Pending\",\n                \"s\": 1,\n                \"oq\": 0.00124,\n                \"avgprice\": \"0.00\",\n                \"total\": \"32.24 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47320580550\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-06-06T07:37:46.808Z\",\n                \"p\": \"25000\",\n                \"q\": 0.1,\n                \"type\": \"l\",\n                \"status\": \"Cancelled\",\n                \"s\": 1,\n                \"oq\": 0.1,\n                \"avgprice\": \"0.00\",\n                \"total\": \"2500 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47320579449\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-06-06T07:37:35.674Z\",\n                \"p\": \"25000\",\n                \"q\": 0.1,\n                \"type\": \"l\",\n                \"status\": \"Cancelled\",\n                \"s\": 1,\n                \"oq\": 0.1,\n                \"avgprice\": \"0.00\",\n                \"total\": \"2500 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47275495546\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-31T06:52:48.547Z\",\n                \"p\": \"29000\",\n                \"q\": 0.00041,\n                \"type\": \"l\",\n                \"status\": \"Cancelled\",\n                \"s\": 1,\n                \"oq\": 0.00041,\n                \"avgprice\": \"0.00\",\n                \"total\": \"11.89 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47275488315\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-31T06:51:23.095Z\",\n                \"p\": \"27180\",\n                \"q\": 0.001,\n                \"type\": \"sl\",\n                \"status\": \"Cancelled\",\n                \"s\": 1,\n                \"oq\": 0.001,\n                \"avgprice\": \"0.00\",\n                \"total\": \"27.18 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47232424615\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:47:29.759Z\",\n                \"p\": \"25882.78\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 1,\n                \"oq\": 0.0005,\n                \"avgprice\": \"26408.55\",\n                \"total\": \"13.2 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0005\n            },\n            {\n                \"id\": \"47232357629\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:35:16.493Z\",\n                \"p\": \"26891.8104\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26369.85\",\n                \"total\": \"10.54 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47232329043\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:29:54.656Z\",\n                \"p\": \"25839.12\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 1,\n                \"oq\": 0.0005,\n                \"avgprice\": \"26365.15\",\n                \"total\": \"13.18 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0005\n            },\n            {\n                \"id\": \"47232246837\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:14:58.883Z\",\n                \"p\": \"26833.9968\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26307.24\",\n                \"total\": \"10.52 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47232245212\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:14:38.583Z\",\n                \"p\": \"26837.0466\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26323.19\",\n                \"total\": \"10.52 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47232244301\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:14:27.423Z\",\n                \"p\": \"26847.1752\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26320.76\",\n                \"total\": \"10.52 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47232173811\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T14:01:20.497Z\",\n                \"p\": \"25840.85\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 1,\n                \"oq\": 0.001,\n                \"avgprice\": \"26365.27\",\n                \"total\": \"26.36 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.001\n            },\n            {\n                \"id\": \"47232088671\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T13:45:20.095Z\",\n                \"p\": \"26852.316\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26325.8\",\n                \"total\": \"10.53 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47232080000\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T13:43:39.104Z\",\n                \"p\": \"26855.1924\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"26328.62\",\n                \"total\": \"10.53 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.0004\n            },\n            {\n                \"id\": \"47231975561\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T13:24:14.326Z\",\n                \"p\": \"26955.6114\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.00044,\n                \"avgprice\": \"26427.07\",\n                \"total\": \"11.62 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.00044\n            },\n            {\n                \"id\": \"47231975052\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T13:24:07.803Z\",\n                \"p\": \"26379.65\",\n                \"q\": 0,\n                \"type\": \"l\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.00076,\n                \"avgprice\": \"26379.65\",\n                \"total\": \"20.04 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.00076\n            },\n            {\n                \"id\": \"47231953535\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-25T13:20:04.078Z\",\n                \"p\": \"26949.1038\",\n                \"q\": 0,\n                \"type\": \"m\",\n                \"status\": \"Filled\",\n                \"s\": 0,\n                \"oq\": 0.00044,\n                \"avgprice\": \"26420.69\",\n                \"total\": \"11.62 USDT\",\n                \"filled\": 100,\n                \"filled_amount\": 0.00044\n            },\n            {\n                \"id\": \"47225085742\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-24T15:26:37.515Z\",\n                \"p\": \"26830.9164\",\n                \"q\": 0.0004,\n                \"type\": \"m\",\n                \"status\": \"Pending\",\n                \"s\": 0,\n                \"oq\": 0.0004,\n                \"avgprice\": \"0.00\",\n                \"total\": \"10.73 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47225082455\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-24T15:25:54.383Z\",\n                \"p\": \"26813.0562\",\n                \"q\": 0.00041,\n                \"type\": \"m\",\n                \"status\": \"Pending\",\n                \"s\": 0,\n                \"oq\": 0.00041,\n                \"avgprice\": \"0.00\",\n                \"total\": \"10.99 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            },\n            {\n                \"id\": \"47225081357\",\n                \"symbol\": \"BTCUSDT\",\n                \"mfee\": 0.15,\n                \"tfee\": 0.15,\n                \"timestamp\": \"2023-05-24T15:25:40.234Z\",\n                \"p\": \"26289.67\",\n                \"q\": 0.00042,\n                \"type\": \"l\",\n                \"status\": \"Cancelled\",\n                \"s\": 0,\n                \"oq\": 0.00042,\n                \"avgprice\": \"0.00\",\n                \"total\": \"11.04 USDT\",\n                \"filled\": 0,\n                \"filled_amount\": 0\n            }\n        ],\n        \"totalItems\": 46,\n        \"currentPage\": 1,\n        \"totalPages\": 3\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T10:00:49.971Z\"\n}"}],"_postman_id":"e0319f1c-2494-4821-b8c1-1e9a651dc668"},{"name":"Order details","id":"f8448318-1a74-42d9-bde9-5027de1b8ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/order?side=1&order_id=47321330932","description":"<p>This API will be used to get order details of a particular Order ID<br />Side 0 means BUY and 1 means SELL</p>\n","urlObject":{"protocol":"https","path":["api","v1","order"],"host":["public-api","bitdelta","com"],"query":[{"key":"side","value":"1"},{"key":"order_id","value":"47321330932"}],"variable":[]}},"response":[{"id":"707b5331-a5b2-4837-9be8-a3944e21d3d1","name":"SUCCESS","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/open-orders?page=1&limit=10&from=123456&to=213456&symbol=BTCUSDT","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","open-orders"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"from","value":"123456"},{"key":"to","value":"213456"},{"key":"symbol","value":"BTCUSDT"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        {\n            \"id\": \"47321330932\",\n            \"symbol\": \"BTCUSDT\",\n            \"mfee\": 0.15,\n            \"tfee\": 0.15,\n            \"timestamp\": \"2023-06-06T09:59:06.198Z\",\n            \"p\": \"26000\",\n            \"q\": 0.00124,\n            \"type\": \"l\",\n            \"status\": \"Pending\",\n            \"s\": 1,\n            \"oq\": 0.00124,\n            \"avgprice\": \"0.00\",\n            \"total\": \"32.24 USDT\",\n            \"filled\": 0,\n            \"filled_amount\": 0\n        }\n    ],\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T10:05:24.660Z\"\n}"}],"_postman_id":"f8448318-1a74-42d9-bde9-5027de1b8ea2"},{"name":"SL order list","id":"84ec1e06-c8d0-470d-8d19-01c5ed4e56cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret-key}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://public-api.bitdelta.com/api/v1/sl-orders?page=1&limit=10&symbol=BTCUSDT","description":"<p>This API will be used to list all open SL orders</p>\n","urlObject":{"protocol":"https","path":["api","v1","sl-orders"],"host":["public-api","bitdelta","com"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"disabled":true,"key":"from","value":"123456"},{"disabled":true,"key":"to","value":"213456"},{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"268103dd-47c7-4506-aa59-27b310cba546","name":"SUCCESS","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"},{"key":"secret-key","value":"{{secret}}","type":"text"}],"url":{"raw":"https://public-api.bitdelta.com/api/v1/sl-orders?page=1&limit=10&symbol=BTCUSDT","protocol":"https","host":["public-api","bitdelta","com"],"path":["api","v1","sl-orders"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"symbol","value":"BTCUSDT"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": {\n        \"result\": [\n            {\n                \"id\": \"47321375641\",\n                \"side\": 1,\n                \"symbol\": \"BTCUSDT\",\n                \"stop\": \"30000\",\n                \"limit\": \"30000\",\n                \"amount\": 0.00062,\n                \"tfee\": 0.15,\n                \"mfee\": 0.15,\n                \"timestamp\": \"2023-06-06T10:07:44.600Z\"\n            }\n        ],\n        \"totalItems\": 1,\n        \"currentPage\": 1,\n        \"totalPages\": 1\n    },\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T10:07:49.280Z\"\n}"}],"_postman_id":"84ec1e06-c8d0-470d-8d19-01c5ed4e56cb"}],"id":"287bf2e3-37af-4dcd-a4fd-ca411fcac5d7","description":"<p>These all are SPOT trading related API's</p>\n","_postman_id":"287bf2e3-37af-4dcd-a4fd-ca411fcac5d7"},{"name":"Market Data","item":[{"name":"Get Summary","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"698f2d18-6b91-4f8c-9814-ee7e18e14c10"}}],"id":"ffa33dc2-27af-4cef-bf41-ce0dcd6936b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/summary?symbol=BTCUSDT","description":"<p>This API will be used to get summary of all trading pairs</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","summary"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"6319b064-e8d0-4656-aa52-240217e9e7f6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/summary?symbol=BTCUSDT","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","summary"],"query":[{"key":"symbol","value":"BTCUSDT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"trading_pairs\": \"BTC_USDT\",\n        \"base_currency\": \"BTC\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"25756.82\",\n        \"lowest_ask\": \"25625.05\",\n        \"highest_bid\": \"25805.62\",\n        \"base_volume\": \"4572.00798\",\n        \"quote_volume\": \"119099205.0372945\",\n        \"price_change_percent_24h\": \"-3.9887963159352418\",\n        \"highest_price_24h\": \"26834.22\",\n        \"lowest_price_24h\": \"25448.68\"\n    },\n    {\n        \"trading_pairs\": \"ETH_USDT\",\n        \"base_currency\": \"ETH\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"1813.14\",\n        \"lowest_ask\": \"1803.98\",\n        \"highest_bid\": \"1819.01\",\n        \"base_volume\": \"27923.1449\",\n        \"quote_volume\": \"50984388.63048799\",\n        \"price_change_percent_24h\": \"-3.212478380629035\",\n        \"highest_price_24h\": \"1873.64\",\n        \"lowest_price_24h\": \"1783.88\"\n    },\n    {\n        \"trading_pairs\": \"SAND_USDT\",\n        \"base_currency\": \"SAND\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.5171\",\n        \"lowest_ask\": \"0.5135\",\n        \"highest_bid\": \"0.5266\",\n        \"base_volume\": \"1780784\",\n        \"quote_volume\": \"988183.7046\",\n        \"price_change_percent_24h\": \"-14.908672042126051\",\n        \"highest_price_24h\": \"0.6143\",\n        \"lowest_price_24h\": \"0.5076\"\n    },\n    {\n        \"trading_pairs\": \"SHIB_USDT\",\n        \"base_currency\": \"SHIB\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.00000804\",\n        \"lowest_ask\": \"0.00000797\",\n        \"highest_bid\": \"0.00000805\",\n        \"base_volume\": \"76309560810\",\n        \"quote_volume\": \"619139.00417637\",\n        \"price_change_percent_24h\": \"-5.854800936768154\",\n        \"highest_price_24h\": \"0.00000856\",\n        \"lowest_price_24h\": \"0.0000078\"\n    },\n    {\n        \"trading_pairs\": \"BCH_USDT\",\n        \"base_currency\": \"BCH\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"109.2\",\n        \"lowest_ask\": \"108.6\",\n        \"highest_bid\": \"109.7\",\n        \"base_volume\": \"2802.073000000001\",\n        \"quote_volume\": \"308330.84579999995\",\n        \"price_change_percent_24h\": \"-4.126426690079018\",\n        \"highest_price_24h\": \"114\",\n        \"lowest_price_24h\": \"107.2\"\n    },\n    {\n        \"trading_pairs\": \"BNB_USDT\",\n        \"base_currency\": \"BNB\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"276.8\",\n        \"lowest_ask\": \"274.8\",\n        \"highest_bid\": \"279\",\n        \"base_volume\": \"1656.183\",\n        \"quote_volume\": \"467543.9896\",\n        \"price_change_percent_24h\": \"-7.978723404255319\",\n        \"highest_price_24h\": \"301.2\",\n        \"lowest_price_24h\": \"272.5\"\n    },\n    {\n        \"trading_pairs\": \"XRP_USDT\",\n        \"base_currency\": \"XRP\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.5069\",\n        \"lowest_ask\": \"0.5029\",\n        \"highest_bid\": \"0.5133\",\n        \"base_volume\": \"347276\",\n        \"quote_volume\": \"177748.59610000002\",\n        \"price_change_percent_24h\": \"-5.163704396632359\",\n        \"highest_price_24h\": \"0.5381\",\n        \"lowest_price_24h\": \"0.4923\"\n    },\n    {\n        \"trading_pairs\": \"LTC_USDT\",\n        \"base_currency\": \"LTC\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"87.39\",\n        \"lowest_ask\": \"86.74\",\n        \"highest_bid\": \"88.17\",\n        \"base_volume\": \"3497.839\",\n        \"quote_volume\": \"309650.99163\",\n        \"price_change_percent_24h\": \"-6.294231181642723\",\n        \"highest_price_24h\": \"93.62\",\n        \"lowest_price_24h\": \"84.13\"\n    },\n    {\n        \"trading_pairs\": \"UNI_USDT\",\n        \"base_currency\": \"UNI\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"4.72\",\n        \"lowest_ask\": \"4.69\",\n        \"highest_bid\": \"4.73\",\n        \"base_volume\": \"47139.859999999986\",\n        \"quote_volume\": \"225383.99320000006\",\n        \"price_change_percent_24h\": \"-5.220883534136559\",\n        \"highest_price_24h\": \"4.98\",\n        \"lowest_price_24h\": \"4.6\"\n    },\n    {\n        \"trading_pairs\": \"ENJ_USDT\",\n        \"base_currency\": \"ENJ\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.3186\",\n        \"lowest_ask\": \"0.3068\",\n        \"highest_bid\": \"0.3202\",\n        \"base_volume\": \"773014.5000000002\",\n        \"quote_volume\": \"248484.55814999997\",\n        \"price_change_percent_24h\": \"-4.8955223880597085\",\n        \"highest_price_24h\": \"0.3469\",\n        \"lowest_price_24h\": \"0.3023\"\n    },\n    {\n        \"trading_pairs\": \"AAVE_USDT\",\n        \"base_currency\": \"AAVE\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"60.1\",\n        \"lowest_ask\": \"59.6\",\n        \"highest_bid\": \"60.4\",\n        \"base_volume\": \"9782.603000000001\",\n        \"quote_volume\": \"585556.6949\",\n        \"price_change_percent_24h\": \"-3.22061191626409\",\n        \"highest_price_24h\": \"62.2\",\n        \"lowest_price_24h\": \"57\"\n    },\n    {\n        \"trading_pairs\": \"ALICE_USDT\",\n        \"base_currency\": \"ALICE\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"1.131\",\n        \"lowest_ask\": \"1.116\",\n        \"highest_bid\": \"1.15\",\n        \"base_volume\": \"296964.67999999993\",\n        \"quote_volume\": \"348334.3057399999\",\n        \"price_change_percent_24h\": \"-10.522151898734178\",\n        \"highest_price_24h\": \"1.277\",\n        \"lowest_price_24h\": \"1.112\"\n    },\n    {\n        \"trading_pairs\": \"MATIC_USDT\",\n        \"base_currency\": \"MATIC\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.8262\",\n        \"lowest_ask\": \"0.8255\",\n        \"highest_bid\": \"0.8359\",\n        \"base_volume\": \"359084.19999999995\",\n        \"quote_volume\": \"305326.78919\",\n        \"price_change_percent_24h\": \"-6.928016221696518\",\n        \"highest_price_24h\": \"0.8892\",\n        \"lowest_price_24h\": \"0.8254\"\n    },\n    {\n        \"trading_pairs\": \"1INCH_USDT\",\n        \"base_currency\": \"1INCH\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.325\",\n        \"lowest_ask\": \"0.319\",\n        \"highest_bid\": \"0.327\",\n        \"base_volume\": \"1073214.2\",\n        \"quote_volume\": \"360379.1694\",\n        \"price_change_percent_24h\": \"-10.220994475138117\",\n        \"highest_price_24h\": \"0.365\",\n        \"lowest_price_24h\": \"0.319\"\n    },\n    {\n        \"trading_pairs\": \"ETC_USDT\",\n        \"base_currency\": \"ETC\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"17.08\",\n        \"lowest_ask\": \"16.96\",\n        \"highest_bid\": \"17.14\",\n        \"base_volume\": \"18443.44\",\n        \"quote_volume\": \"317250.40650000004\",\n        \"price_change_percent_24h\": \"-5.216426193118765\",\n        \"highest_price_24h\": \"18.07\",\n        \"lowest_price_24h\": \"16.65\"\n    },\n    {\n        \"trading_pairs\": \"LINK_USDT\",\n        \"base_currency\": \"LINK\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"6.086\",\n        \"lowest_ask\": \"6.007\",\n        \"highest_bid\": \"6.092\",\n        \"base_volume\": \"36990.33\",\n        \"quote_volume\": \"227609.34961000003\",\n        \"price_change_percent_24h\": \"-4.906250000000001\",\n        \"highest_price_24h\": \"6.405\",\n        \"lowest_price_24h\": \"5.994\"\n    },\n    {\n        \"trading_pairs\": \"DOT_USDT\",\n        \"base_currency\": \"DOT\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"5.07\",\n        \"lowest_ask\": \"5.03\",\n        \"highest_bid\": \"5.08\",\n        \"base_volume\": \"90428.87000000002\",\n        \"quote_volume\": \"463332.71419999993\",\n        \"price_change_percent_24h\": \"-4.15879017013232\",\n        \"highest_price_24h\": \"5.31\",\n        \"lowest_price_24h\": \"4.91\"\n    },\n    {\n        \"trading_pairs\": \"DOGE_USDT\",\n        \"base_currency\": \"DOGE\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.06652\",\n        \"lowest_ask\": \"0.06614\",\n        \"highest_bid\": \"0.06676\",\n        \"base_volume\": \"6756108\",\n        \"quote_volume\": \"453666.77422\",\n        \"price_change_percent_24h\": \"-7.289198606271776\",\n        \"highest_price_24h\": \"0.07187\",\n        \"lowest_price_24h\": \"0.06404\"\n    },\n    {\n        \"trading_pairs\": \"ADA_USDT\",\n        \"base_currency\": \"ADA\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.3519\",\n        \"lowest_ask\": \"0.3472\",\n        \"highest_bid\": \"0.3529\",\n        \"base_volume\": \"1022385.2\",\n        \"quote_volume\": \"365133.0603500001\",\n        \"price_change_percent_24h\": \"-6.160000000000002\",\n        \"highest_price_24h\": \"0.3754\",\n        \"lowest_price_24h\": \"0.3472\"\n    },\n    {\n        \"trading_pairs\": \"FTM_USDT\",\n        \"base_currency\": \"FTM\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.2906\",\n        \"lowest_ask\": \"0.2874\",\n        \"highest_bid\": \"0.2928\",\n        \"base_volume\": \"2257990\",\n        \"quote_volume\": \"676939.8524\",\n        \"price_change_percent_24h\": \"-9.695463020509619\",\n        \"highest_price_24h\": \"0.3258\",\n        \"lowest_price_24h\": \"0.2816\"\n    },\n    {\n        \"trading_pairs\": \"LRC_USDT\",\n        \"base_currency\": \"LRC\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.2568\",\n        \"lowest_ask\": \"0.2531\",\n        \"highest_bid\": \"0.2595\",\n        \"base_volume\": \"1682098\",\n        \"quote_volume\": \"435558.6951000001\",\n        \"price_change_percent_24h\": \"-6.753812636165579\",\n        \"highest_price_24h\": \"0.2763\",\n        \"lowest_price_24h\": \"0.2465\"\n    },\n    {\n        \"trading_pairs\": \"GALA_USDT\",\n        \"base_currency\": \"GALA\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.0264\",\n        \"lowest_ask\": \"0.02622\",\n        \"highest_bid\": \"0.02659\",\n        \"base_volume\": \"8505508\",\n        \"quote_volume\": \"231251.65358000007\",\n        \"price_change_percent_24h\": \"-9.4960575934179\",\n        \"highest_price_24h\": \"0.0294\",\n        \"lowest_price_24h\": \"0.02586\"\n    },\n    {\n        \"trading_pairs\": \"AXS_USDT\",\n        \"base_currency\": \"AXS\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"6.58\",\n        \"lowest_ask\": \"6.51\",\n        \"highest_bid\": \"6.7\",\n        \"base_volume\": \"90173.86\",\n        \"quote_volume\": \"624909.6599999999\",\n        \"price_change_percent_24h\": \"-10.476190476190471\",\n        \"highest_price_24h\": \"7.47\",\n        \"lowest_price_24h\": \"6.5\"\n    },\n    {\n        \"trading_pairs\": \"SOL_USDT\",\n        \"base_currency\": \"SOL\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"20\",\n        \"lowest_ask\": \"19.73\",\n        \"highest_bid\": \"20.08\",\n        \"base_volume\": \"17680.89\",\n        \"quote_volume\": \"358634.8064\",\n        \"price_change_percent_24h\": \"-7.663896583564174\",\n        \"highest_price_24h\": \"21.68\",\n        \"lowest_price_24h\": \"19.37\"\n    },\n    {\n        \"trading_pairs\": \"POWR_USDT\",\n        \"base_currency\": \"POWR\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.1431\",\n        \"lowest_ask\": \"0.1417\",\n        \"highest_bid\": \"0.144\",\n        \"base_volume\": \"589357\",\n        \"quote_volume\": \"86560.40610000001\",\n        \"price_change_percent_24h\": \"-5.917159763313614\",\n        \"highest_price_24h\": \"0.154\",\n        \"lowest_price_24h\": \"0.1417\"\n    },\n    {\n        \"trading_pairs\": \"NEAR_USDT\",\n        \"base_currency\": \"NEAR\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"1.496\",\n        \"lowest_ask\": \"1.485\",\n        \"highest_bid\": \"1.505\",\n        \"base_volume\": \"176359.69999999998\",\n        \"quote_volume\": \"270596.65290000004\",\n        \"price_change_percent_24h\": \"-7.881773399014786\",\n        \"highest_price_24h\": \"1.656\",\n        \"lowest_price_24h\": \"1.446\"\n    },\n    {\n        \"trading_pairs\": \"AVAX_USDT\",\n        \"base_currency\": \"AVAX\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"14.1\",\n        \"lowest_ask\": \"13.82\",\n        \"highest_bid\": \"14.15\",\n        \"base_volume\": \"39121.67\",\n        \"quote_volume\": \"553561.0815000001\",\n        \"price_change_percent_24h\": \"-4.729729729729737\",\n        \"highest_price_24h\": \"14.88\",\n        \"lowest_price_24h\": \"13.55\"\n    },\n    {\n        \"trading_pairs\": \"ALGO_USDT\",\n        \"base_currency\": \"ALGO\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.1363\",\n        \"lowest_ask\": \"0.1353\",\n        \"highest_bid\": \"0.1383\",\n        \"base_volume\": \"1804206\",\n        \"quote_volume\": \"253282.02440000002\",\n        \"price_change_percent_24h\": \"-8.646112600536188\",\n        \"highest_price_24h\": \"0.1497\",\n        \"lowest_price_24h\": \"0.132\"\n    },\n    {\n        \"trading_pairs\": \"MANA_USDT\",\n        \"base_currency\": \"MANA\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.4565\",\n        \"lowest_ask\": \"0.4499\",\n        \"highest_bid\": \"0.4634\",\n        \"base_volume\": \"1202062\",\n        \"quote_volume\": \"580838.7151000001\",\n        \"price_change_percent_24h\": \"-11.134903640256963\",\n        \"highest_price_24h\": \"0.5314\",\n        \"lowest_price_24h\": \"0.4498\"\n    },\n    {\n        \"trading_pairs\": \"HBAR_USDT\",\n        \"base_currency\": \"HBAR\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.0488\",\n        \"lowest_ask\": \"0.0482\",\n        \"highest_bid\": \"0.0491\",\n        \"base_volume\": \"4026147\",\n        \"quote_volume\": \"196052.10899999997\",\n        \"price_change_percent_24h\": \"-2.008032128514044\",\n        \"highest_price_24h\": \"0.0503\",\n        \"lowest_price_24h\": \"0.0465\"\n    },\n    {\n        \"trading_pairs\": \"GHST_USDT\",\n        \"base_currency\": \"GHST\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.942\",\n        \"lowest_ask\": \"0.934\",\n        \"highest_bid\": \"0.954\",\n        \"base_volume\": \"37741.00000000001\",\n        \"quote_volume\": \"36155.633799999996\",\n        \"price_change_percent_24h\": \"-4.46247464503043\",\n        \"highest_price_24h\": \"0.994\",\n        \"lowest_price_24h\": \"0.922\"\n    },\n    {\n        \"trading_pairs\": \"ATOM_USDT\",\n        \"base_currency\": \"ATOM\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"10.002\",\n        \"lowest_ask\": \"9.941\",\n        \"highest_bid\": \"10.026\",\n        \"base_volume\": \"27107.09\",\n        \"quote_volume\": \"275216.56325999997\",\n        \"price_change_percent_24h\": \"-6.119767223577992\",\n        \"highest_price_24h\": \"10.679\",\n        \"lowest_price_24h\": \"9.906\"\n    },\n    {\n        \"trading_pairs\": \"GRT_USDT\",\n        \"base_currency\": \"GRT\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.1164\",\n        \"lowest_ask\": \"0.1138\",\n        \"highest_bid\": \"0.1176\",\n        \"base_volume\": \"3217954\",\n        \"quote_volume\": \"374344.2768\",\n        \"price_change_percent_24h\": \"-5.8252427184466\",\n        \"highest_price_24h\": \"0.1241\",\n        \"lowest_price_24h\": \"0.1102\"\n    },\n    {\n        \"trading_pairs\": \"ONE_USDT\",\n        \"base_currency\": \"ONE\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.01307\",\n        \"lowest_ask\": \"0.01282\",\n        \"highest_bid\": \"0.0131\",\n        \"base_volume\": \"4071024.4999999995\",\n        \"quote_volume\": \"53642.809815000015\",\n        \"price_change_percent_24h\": \"-7.370659107016296\",\n        \"highest_price_24h\": \"0.01425\",\n        \"lowest_price_24h\": \"0.0124\"\n    },\n    {\n        \"trading_pairs\": \"HOT_USDT\",\n        \"base_currency\": \"HOT\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.001498\",\n        \"lowest_ask\": \"0.001478\",\n        \"highest_bid\": \"0.001499\",\n        \"base_volume\": \"136879574\",\n        \"quote_volume\": \"206927.96869399998\",\n        \"price_change_percent_24h\": \"-6.316447779862412\",\n        \"highest_price_24h\": \"0.001619\",\n        \"lowest_price_24h\": \"0.001434\"\n    },\n    {\n        \"trading_pairs\": \"ATOZ_USDT\",\n        \"base_currency\": \"ATOZ\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.11899\",\n        \"lowest_ask\": \"0.11839\",\n        \"highest_bid\": \"0.11928\",\n        \"base_volume\": \"1303778.213235\",\n        \"quote_volume\": \"157956.13018113998\",\n        \"price_change_percent_24h\": \"-5.126774039228197\",\n        \"highest_price_24h\": \"0.12545\",\n        \"lowest_price_24h\": \"0.1169\"\n    },\n    {\n        \"trading_pairs\": \"VOLT_USDT\",\n        \"base_currency\": \"VOLT\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"6.962e-7\",\n        \"lowest_ask\": \"9.468e-7\",\n        \"highest_bid\": \"6.962e-7\",\n        \"base_volume\": \"9501706152\",\n        \"quote_volume\": \"6650.03920735\",\n        \"price_change_percent_24h\": \"-0.014361625736034398\",\n        \"highest_price_24h\": \"7.12e-7\",\n        \"lowest_price_24h\": \"6.962e-7\"\n    },\n    {\n        \"trading_pairs\": \"LOP_USDT\",\n        \"base_currency\": \"LOP\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.00567\",\n        \"lowest_ask\": \"0.00501\",\n        \"highest_bid\": \"0.00999\",\n        \"base_volume\": \"10981491.86\",\n        \"quote_volume\": \"70101.44303575998\",\n        \"price_change_percent_24h\": \"5.78358208955223\",\n        \"highest_price_24h\": \"0.00999\",\n        \"lowest_price_24h\": \"0.005\"\n    },\n    {\n        \"trading_pairs\": \"XACT_USDT\",\n        \"base_currency\": \"XACT\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.33874\",\n        \"lowest_ask\": \"0.31338\",\n        \"highest_bid\": \"0.34048\",\n        \"base_volume\": \"540631.9500000001\",\n        \"quote_volume\": \"183124.4698221\",\n        \"price_change_percent_24h\": \"-0.27966675498248594\",\n        \"highest_price_24h\": \"0.3415\",\n        \"lowest_price_24h\": \"0.31257\"\n    },\n    {\n        \"trading_pairs\": \"FLOKI_USDT\",\n        \"base_currency\": \"FLOKI\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"0.000029223\",\n        \"lowest_ask\": \"0.000029182\",\n        \"highest_bid\": \"0.000029362\",\n        \"base_volume\": \"1450124352\",\n        \"quote_volume\": \"43587.64627941001\",\n        \"price_change_percent_24h\": \"-5.430244975890748\",\n        \"highest_price_24h\": \"0.0000313\",\n        \"lowest_price_24h\": \"0.000029182\"\n    }\n]"}],"_postman_id":"ffa33dc2-27af-4cef-bf41-ce0dcd6936b9"},{"name":"Get Assets","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"a1483e35-52ed-4972-bbef-058a3cfc52d9"}}],"id":"3fbc241a-77a0-4ea3-92a6-b7383b7605ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/assets","description":"<p>This API will be used to get Assets</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","assets"],"host":["api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"45baf4ff-9ec6-43ae-aeed-902c56396906","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":"https://api.bitdelta.com/open/api/v1/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"GALAV1\": {\n        \"name\": \"Gala V1\",\n        \"unified_cryptoasset_id\": \"0\",\n        \"can_withdraw\": true,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"184\",\n        \"max_withdraw\": \"1000000\",\n        \"maker_fee\": \"0.1\",\n        \"taker_fee\": \"0.1\"\n    },\n    \"BTC\": {\n        \"name\": \"Bitcoin\",\n        \"unified_cryptoasset_id\": \"1\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.002\",\n        \"max_withdraw\": \"100\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ETH\": {\n        \"name\": \"Ethereum\",\n        \"unified_cryptoasset_id\": \"1027\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.02\",\n        \"max_withdraw\": \"1000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"LTC\": {\n        \"name\": \"Litecoin\",\n        \"unified_cryptoasset_id\": \"2\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.004\",\n        \"max_withdraw\": \"1000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"RXT\": {\n        \"name\": \"RIMAUNANGIS(BSC Chain)\",\n        \"unified_cryptoasset_id\": \"22076\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"5\",\n        \"max_withdraw\": \"100000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"XRP\": {\n        \"name\": \"Ripple\",\n        \"unified_cryptoasset_id\": \"52\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"40\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"BCH\": {\n        \"name\": \"Bitcoin Cash\",\n        \"unified_cryptoasset_id\": \"1831\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.24\",\n        \"max_withdraw\": \"10000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"USDT\": {\n        \"name\": \"Tether\",\n        \"unified_cryptoasset_id\": \"825\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"50\",\n        \"max_withdraw\": \"100000000\",\n        \"maker_fee\": \"0.1\",\n        \"taker_fee\": \"0.1\"\n    },\n    \"UNI\": {\n        \"name\": \"Uniswap\",\n        \"unified_cryptoasset_id\": \"4307\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"3\",\n        \"max_withdraw\": \"1000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"SAND\": {\n        \"name\": \"The Sandbox\",\n        \"unified_cryptoasset_id\": \"6210\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"12\",\n        \"max_withdraw\": \"1000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"SHIB\": {\n        \"name\": \"SHIBA INU\",\n        \"unified_cryptoasset_id\": \"5994\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"1660444\",\n        \"max_withdraw\": \"10000000000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"BNB\": {\n        \"name\": \"Binance Coin\",\n        \"unified_cryptoasset_id\": \"1839\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.024\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"MATIC\": {\n        \"name\": \"Matic (Polygon)\",\n        \"unified_cryptoasset_id\": \"3890\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"2\",\n        \"max_withdraw\": \"1000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"GHST\": {\n        \"name\": \"Aavegotchi\",\n        \"unified_cryptoasset_id\": \"7046\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"50.01\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ATOM\": {\n        \"name\": \"Cosmos\",\n        \"unified_cryptoasset_id\": \"3794\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"1\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"GRT\": {\n        \"name\": \"The Graph\",\n        \"unified_cryptoasset_id\": \"5711\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"170\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"MKR\": {\n        \"name\": \"Maker\",\n        \"unified_cryptoasset_id\": \"1518\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.05\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ONE\": {\n        \"name\": \"Harmony(BSC Chain) \",\n        \"unified_cryptoasset_id\": \"3945\",\n        \"can_withdraw\": false,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"16\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"FTT\": {\n        \"name\": \"FTX Token\",\n        \"unified_cryptoasset_id\": \"4195\",\n        \"can_withdraw\": true,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"2\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"HOT\": {\n        \"name\": \"Holo\",\n        \"unified_cryptoasset_id\": \"2682\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"15000\",\n        \"max_withdraw\": \"1000000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ATOZ\": {\n        \"name\": \"Race Kingdom(BSC Chain)\",\n        \"unified_cryptoasset_id\": \"20941\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"100\",\n        \"max_withdraw\": \"100000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"VOLT\": {\n        \"name\": \"Volt Inu\",\n        \"unified_cryptoasset_id\": \"19650\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"10000000\",\n        \"max_withdraw\": \"10000000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"LOP\": {\n        \"name\": \"League Of Pharaohs(BSC Chain)\",\n        \"unified_cryptoasset_id\": \"null\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"150\",\n        \"max_withdraw\": \"300000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"USDC\": {\n        \"name\": \"USD Coin\",\n        \"unified_cryptoasset_id\": \"3408\",\n        \"can_withdraw\": false,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"50\",\n        \"max_withdraw\": \"1000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"XACT\": {\n        \"name\": \"XACT TOKEN(Polygon)\",\n        \"unified_cryptoasset_id\": \"null\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"30\",\n        \"max_withdraw\": \"1000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"FLOKI\": {\n        \"name\": \"FLOKI\",\n        \"unified_cryptoasset_id\": \"10804\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"3000000\",\n        \"max_withdraw\": \"1000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"CCV2\": {\n        \"name\": \"Celebrity Coin\",\n        \"unified_cryptoasset_id\": \"0\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.1\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"GALA\": {\n        \"name\": \"Gala\",\n        \"unified_cryptoasset_id\": \"7080\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"184\",\n        \"max_withdraw\": \"1000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ENJ\": {\n        \"name\": \"Enjin Coin\",\n        \"unified_cryptoasset_id\": \"2130\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"18\",\n        \"max_withdraw\": \"100000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"AAVE\": {\n        \"name\": \"AAVE\",\n        \"unified_cryptoasset_id\": \"7278\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.52\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"1INCH\": {\n        \"name\": \"1inch Network\",\n        \"unified_cryptoasset_id\": \"8104\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"10\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ADA\": {\n        \"name\": \"Cardano\",\n        \"unified_cryptoasset_id\": \"2010\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"15\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ALICE\": {\n        \"name\": \"MyNeighborAlice\",\n        \"unified_cryptoasset_id\": \"8766\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"4\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"DASH\": {\n        \"name\": \"Dash\",\n        \"unified_cryptoasset_id\": \"131\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.008\",\n        \"max_withdraw\": \"10000\",\n        \"maker_fee\": \"0.1\",\n        \"taker_fee\": \"0.1\"\n    },\n    \"XLM\": {\n        \"name\": \"Stellar\",\n        \"unified_cryptoasset_id\": \"512\",\n        \"can_withdraw\": false,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"10\",\n        \"max_withdraw\": \"1000000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"LINK\": {\n        \"name\": \"Chainlink\",\n        \"unified_cryptoasset_id\": \"1975\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"3.72\",\n        \"max_withdraw\": \"100\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"DOT\": {\n        \"name\": \"Polkadot\",\n        \"unified_cryptoasset_id\": \"6636\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"1.5\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ETC\": {\n        \"name\": \"Ethereum Classic\",\n        \"unified_cryptoasset_id\": \"1321\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.04\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"DOGE\": {\n        \"name\": \"Doge Coin\",\n        \"unified_cryptoasset_id\": \"74\",\n        \"can_withdraw\": false,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"25\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"LUNA\": {\n        \"name\": \"Terra Luna\",\n        \"unified_cryptoasset_id\": \"1496\",\n        \"can_withdraw\": false,\n        \"can_deposit\": false,\n        \"min_withdraw\": \"2.3\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"FTM\": {\n        \"name\": \"Fantom\",\n        \"unified_cryptoasset_id\": \"3513\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"28\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"LRC\": {\n        \"name\": \"Loopring\",\n        \"unified_cryptoasset_id\": \"1934\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"20\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"AXS\": {\n        \"name\": \"Axie Infinity\",\n        \"unified_cryptoasset_id\": \"6783\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.5\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"SOL\": {\n        \"name\": \"SOLANA\",\n        \"unified_cryptoasset_id\": \"5426\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.5\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"POWR\": {\n        \"name\": \"Powerledger\",\n        \"unified_cryptoasset_id\": \"2132\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"100\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"NEAR\": {\n        \"name\": \"NEAR Protocol\",\n        \"unified_cryptoasset_id\": \"6535\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.2\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"AVAX\": {\n        \"name\": \"Avalanche\",\n        \"unified_cryptoasset_id\": \"5805\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"0.8\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"ALGO\": {\n        \"name\": \"Algorand\",\n        \"unified_cryptoasset_id\": \"4030\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"20\",\n        \"max_withdraw\": \"100000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"MANA\": {\n        \"name\": \"Decentraland\",\n        \"unified_cryptoasset_id\": \"1966\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"40\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    },\n    \"HBAR\": {\n        \"name\": \"Hedera Hashgraph\",\n        \"unified_cryptoasset_id\": \"4642\",\n        \"can_withdraw\": true,\n        \"can_deposit\": true,\n        \"min_withdraw\": \"4\",\n        \"max_withdraw\": \"10000000\",\n        \"maker_fee\": \"0.15\",\n        \"taker_fee\": \"0.15\"\n    }\n}"}],"_postman_id":"3fbc241a-77a0-4ea3-92a6-b7383b7605ad"},{"name":"Get Ticker","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"e02fc795-f0dd-4984-9c5b-0dbde30b80d2"}}],"id":"e2808bbb-2d95-4994-b97e-aa5ccd8e1b56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/ticker","description":"<p>This API will be used for getting ticker</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","ticker"],"host":["api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"9111ef3b-8ce8-4153-8d54-03919ac9bece","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":"https://api.bitdelta.com/open/api/v1/ticker"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"BTC_USDT\": {\n        \"base_id\": \"1\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"25746.67\",\n        \"quote_volume\": \"119238182.4237635\",\n        \"base_volume\": \"4577.405210000001\",\n        \"isFrozen\": \"0\"\n    },\n    \"ETH_USDT\": {\n        \"base_id\": \"1027\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"1813.84\",\n        \"quote_volume\": \"51002028.675321\",\n        \"base_volume\": \"27932.8732\",\n        \"isFrozen\": \"0\"\n    },\n    \"SAND_USDT\": {\n        \"base_id\": \"6210\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.5175\",\n        \"quote_volume\": \"988333.2621\",\n        \"base_volume\": \"1781073\",\n        \"isFrozen\": \"0\"\n    },\n    \"SHIB_USDT\": {\n        \"base_id\": \"5994\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.00000803\",\n        \"quote_volume\": \"619485.24231862\",\n        \"base_volume\": \"76352678885\",\n        \"isFrozen\": \"0\"\n    },\n    \"BCH_USDT\": {\n        \"base_id\": \"1831\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"109.3\",\n        \"quote_volume\": \"308366.25899999996\",\n        \"base_volume\": \"2802.3970000000004\",\n        \"isFrozen\": \"0\"\n    },\n    \"BNB_USDT\": {\n        \"base_id\": \"1839\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"276.9\",\n        \"quote_volume\": \"467607.95349999995\",\n        \"base_volume\": \"1656.414\",\n        \"isFrozen\": \"0\"\n    },\n    \"XRP_USDT\": {\n        \"base_id\": \"52\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.5069\",\n        \"quote_volume\": \"177748.59610000002\",\n        \"base_volume\": \"347276\",\n        \"isFrozen\": \"0\"\n    },\n    \"LTC_USDT\": {\n        \"base_id\": \"2\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"87.39\",\n        \"quote_volume\": \"309754.98573\",\n        \"base_volume\": \"3499.0290000000005\",\n        \"isFrozen\": \"0\"\n    },\n    \"UNI_USDT\": {\n        \"base_id\": \"4307\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"4.72\",\n        \"quote_volume\": \"225436.43240000005\",\n        \"base_volume\": \"47150.96999999999\",\n        \"isFrozen\": \"0\"\n    },\n    \"ENJ_USDT\": {\n        \"base_id\": \"2130\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.3187\",\n        \"quote_volume\": \"248506.35722999997\",\n        \"base_volume\": \"773082.9000000004\",\n        \"isFrozen\": \"0\"\n    },\n    \"AAVE_USDT\": {\n        \"base_id\": \"7278\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"60.1\",\n        \"quote_volume\": \"585590.1706\",\n        \"base_volume\": \"9783.16\",\n        \"isFrozen\": \"0\"\n    },\n    \"ALICE_USDT\": {\n        \"base_id\": \"8766\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"1.131\",\n        \"quote_volume\": \"348446.86285999994\",\n        \"base_volume\": \"297064.19999999995\",\n        \"isFrozen\": \"0\"\n    },\n    \"MATIC_USDT\": {\n        \"base_id\": \"3890\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.8264\",\n        \"quote_volume\": \"305348.19295\",\n        \"base_volume\": \"359110.0999999999\",\n        \"isFrozen\": \"0\"\n    },\n    \"1INCH_USDT\": {\n        \"base_id\": \"8104\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.324\",\n        \"quote_volume\": \"361633.2357\",\n        \"base_volume\": \"1077074.1\",\n        \"isFrozen\": \"0\"\n    },\n    \"ETC_USDT\": {\n        \"base_id\": \"1321\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"17.08\",\n        \"quote_volume\": \"317277.56370000006\",\n        \"base_volume\": \"18445.03\",\n        \"isFrozen\": \"0\"\n    },\n    \"LINK_USDT\": {\n        \"base_id\": \"1975\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"6.089\",\n        \"quote_volume\": \"228017.24461\",\n        \"base_volume\": \"37057.33\",\n        \"isFrozen\": \"0\"\n    },\n    \"DOT_USDT\": {\n        \"base_id\": \"6636\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"5.07\",\n        \"quote_volume\": \"463332.71419999993\",\n        \"base_volume\": \"90428.87000000002\",\n        \"isFrozen\": \"0\"\n    },\n    \"DOGE_USDT\": {\n        \"base_id\": \"74\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.06653\",\n        \"quote_volume\": \"453682.40877\",\n        \"base_volume\": \"6756343\",\n        \"isFrozen\": \"0\"\n    },\n    \"ADA_USDT\": {\n        \"base_id\": \"2010\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.3521\",\n        \"quote_volume\": \"365389.7533700001\",\n        \"base_volume\": \"1023114.5\",\n        \"isFrozen\": \"0\"\n    },\n    \"FTM_USDT\": {\n        \"base_id\": \"3513\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.2907\",\n        \"quote_volume\": \"677563.5136999999\",\n        \"base_volume\": \"2260136\",\n        \"isFrozen\": \"0\"\n    },\n    \"LRC_USDT\": {\n        \"base_id\": \"1934\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.2568\",\n        \"quote_volume\": \"435601.58070000005\",\n        \"base_volume\": \"1682265\",\n        \"isFrozen\": \"0\"\n    },\n    \"GALA_USDT\": {\n        \"base_id\": \"7080\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.02639\",\n        \"quote_volume\": \"231275.40458000006\",\n        \"base_volume\": \"8506408\",\n        \"isFrozen\": \"0\"\n    },\n    \"AXS_USDT\": {\n        \"base_id\": \"6783\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"6.58\",\n        \"quote_volume\": \"624909.6599999999\",\n        \"base_volume\": \"90173.86\",\n        \"isFrozen\": \"0\"\n    },\n    \"SOL_USDT\": {\n        \"base_id\": \"5426\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"20.01\",\n        \"quote_volume\": \"358703.64190000005\",\n        \"base_volume\": \"17684.329999999998\",\n        \"isFrozen\": \"0\"\n    },\n    \"POWR_USDT\": {\n        \"base_id\": \"2132\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.1431\",\n        \"quote_volume\": \"86590.0278\",\n        \"base_volume\": \"589564\",\n        \"isFrozen\": \"0\"\n    },\n    \"NEAR_USDT\": {\n        \"base_id\": \"6535\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"1.497\",\n        \"quote_volume\": \"271105.0336\",\n        \"base_volume\": \"176699.49999999997\",\n        \"isFrozen\": \"0\"\n    },\n    \"AVAX_USDT\": {\n        \"base_id\": \"5805\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"14.1\",\n        \"quote_volume\": \"555044.8245000001\",\n        \"base_volume\": \"39226.9\",\n        \"isFrozen\": \"0\"\n    },\n    \"ALGO_USDT\": {\n        \"base_id\": \"4030\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.1363\",\n        \"quote_volume\": \"253526.68289999999\",\n        \"base_volume\": \"1806001\",\n        \"isFrozen\": \"0\"\n    },\n    \"MANA_USDT\": {\n        \"base_id\": \"1966\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.4567\",\n        \"quote_volume\": \"580856.0697000001\",\n        \"base_volume\": \"1202100\",\n        \"isFrozen\": \"0\"\n    },\n    \"HBAR_USDT\": {\n        \"base_id\": \"4642\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.0487\",\n        \"quote_volume\": \"196273.30439999996\",\n        \"base_volume\": \"4030689\",\n        \"isFrozen\": \"0\"\n    },\n    \"GHST_USDT\": {\n        \"base_id\": \"7046\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.942\",\n        \"quote_volume\": \"36155.633799999996\",\n        \"base_volume\": \"37741.00000000001\",\n        \"isFrozen\": \"0\"\n    },\n    \"ATOM_USDT\": {\n        \"base_id\": \"3794\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"9.996\",\n        \"quote_volume\": \"275379.35634999996\",\n        \"base_volume\": \"27123.37\",\n        \"isFrozen\": \"0\"\n    },\n    \"GRT_USDT\": {\n        \"base_id\": \"5711\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.1162\",\n        \"quote_volume\": \"375278.82940000005\",\n        \"base_volume\": \"3225990\",\n        \"isFrozen\": \"0\"\n    },\n    \"ONE_USDT\": {\n        \"base_id\": \"3945\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.01307\",\n        \"quote_volume\": \"53717.86298300001\",\n        \"base_volume\": \"4076766.9\",\n        \"isFrozen\": \"0\"\n    },\n    \"HOT_USDT\": {\n        \"base_id\": \"2682\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.001497\",\n        \"quote_volume\": \"207066.704666\",\n        \"base_volume\": \"136972250\",\n        \"isFrozen\": \"0\"\n    },\n    \"ATOZ_USDT\": {\n        \"base_id\": \"20941\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.11899\",\n        \"quote_volume\": \"157956.13018113998\",\n        \"base_volume\": \"1303778.213235\",\n        \"isFrozen\": \"0\"\n    },\n    \"VOLT_USDT\": {\n        \"base_id\": \"19650\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"6.962e-7\",\n        \"quote_volume\": \"6650.03920735\",\n        \"base_volume\": \"9501706152\",\n        \"isFrozen\": \"0\"\n    },\n    \"LOP_USDT\": {\n        \"base_id\": \"null\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.00567\",\n        \"quote_volume\": \"70101.44303575998\",\n        \"base_volume\": \"10981491.86\",\n        \"isFrozen\": \"0\"\n    },\n    \"XACT_USDT\": {\n        \"base_id\": \"null\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.33895\",\n        \"quote_volume\": \"183273.09261810005\",\n        \"base_volume\": \"541070.43\",\n        \"isFrozen\": \"0\"\n    },\n    \"FLOKI_USDT\": {\n        \"base_id\": \"10804\",\n        \"quote_id\": \"825\",\n        \"last_price\": \"0.000029267\",\n        \"quote_volume\": \"43665.95948912001\",\n        \"base_volume\": \"1452799746\",\n        \"isFrozen\": \"0\"\n    }\n}"}],"_postman_id":"e2808bbb-2d95-4994-b97e-aa5ccd8e1b56"},{"name":"Get trades for a symbol","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"8c96b878-19ae-441a-a53b-d48ade9f5cde"}}],"id":"dd4daee1-7fcd-4a98-95ed-b3377a15206c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/trades?symbol=BTCUSDT&limit=400","description":"<p>This API will be used to get trades of a symbol</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","trades"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"},{"key":"limit","value":"400"}],"variable":[]}},"response":[{"id":"092659ef-e521-49c6-bfb7-d81897f7b3d7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/trades?symbol=LTC_USDT&limit=400","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","trades"],"query":[{"key":"symbol","value":"LTC_USDT"},{"key":"limit","value":"400"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"trade_id\": \"408536883\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8739\",\n        \"timestamp\": \"1686037555756\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408536882\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8739\",\n        \"timestamp\": \"1686037555756\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408536875\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.378\",\n        \"quote_volume\": \"33.03342\",\n        \"timestamp\": \"1686037554219\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408536874\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.378\",\n        \"quote_volume\": \"33.03342\",\n        \"timestamp\": \"1686037554219\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408536862\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.374\",\n        \"quote_volume\": \"32.68386\",\n        \"timestamp\": \"1686037552629\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408536863\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.374\",\n        \"quote_volume\": \"32.68386\",\n        \"timestamp\": \"1686037552629\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408536645\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.428\",\n        \"quote_volume\": \"37.40292\",\n        \"timestamp\": \"1686037507905\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408536644\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.428\",\n        \"quote_volume\": \"37.40292\",\n        \"timestamp\": \"1686037507905\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408535548\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8739\",\n        \"timestamp\": \"1686037308566\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408535549\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8739\",\n        \"timestamp\": \"1686037308566\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408535098\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686037229905\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408535099\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686037229905\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408534132\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686037061315\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408534133\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686037061315\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408533618\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.435\",\n        \"quote_volume\": \"38.08425\",\n        \"timestamp\": \"1686036983034\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408533619\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.435\",\n        \"quote_volume\": \"38.08425\",\n        \"timestamp\": \"1686036983034\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408533615\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.35\",\n        \"quote_volume\": \"30.6425\",\n        \"timestamp\": \"1686036982498\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408533614\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.35\",\n        \"quote_volume\": \"30.6425\",\n        \"timestamp\": \"1686036982498\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408532692\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96349\",\n        \"timestamp\": \"1686036814598\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408532691\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96349\",\n        \"timestamp\": \"1686036814598\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408531715\",\n        \"price\": \"87.51\",\n        \"base_volume\": \"0.249\",\n        \"quote_volume\": \"21.78999\",\n        \"timestamp\": \"1686036611392\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408531714\",\n        \"price\": \"87.51\",\n        \"base_volume\": \"0.249\",\n        \"quote_volume\": \"21.78999\",\n        \"timestamp\": \"1686036611392\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408531457\",\n        \"price\": \"87.53\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8753000000000001\",\n        \"timestamp\": \"1686036567406\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408531456\",\n        \"price\": \"87.53\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8753000000000001\",\n        \"timestamp\": \"1686036567406\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408530745\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.199\",\n        \"quote_volume\": \"17.42444\",\n        \"timestamp\": \"1686036431839\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408530744\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.199\",\n        \"quote_volume\": \"17.42444\",\n        \"timestamp\": \"1686036431839\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408530209\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686036320183\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408530208\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8745999999999999\",\n        \"timestamp\": \"1686036320183\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408529709\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.248\",\n        \"quote_volume\": \"21.69256\",\n        \"timestamp\": \"1686036206046\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408529708\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.248\",\n        \"quote_volume\": \"21.69256\",\n        \"timestamp\": \"1686036206046\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408529037\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8744\",\n        \"timestamp\": \"1686036072950\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408529036\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8744\",\n        \"timestamp\": \"1686036072950\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527839\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8748\",\n        \"timestamp\": \"1686035826219\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527838\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.01\",\n        \"quote_volume\": \"0.8748\",\n        \"timestamp\": \"1686035826219\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527478\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"5.293\",\n        \"quote_volume\": \"462.55527\",\n        \"timestamp\": \"1686035761538\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527479\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"5.293\",\n        \"quote_volume\": \"462.55527\",\n        \"timestamp\": \"1686035761538\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527474\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"1.266\",\n        \"quote_volume\": \"110.63574\",\n        \"timestamp\": \"1686035761019\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527475\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"1.266\",\n        \"quote_volume\": \"110.63574\",\n        \"timestamp\": \"1686035761019\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527472\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"4.523\",\n        \"quote_volume\": \"395.21973999999994\",\n        \"timestamp\": \"1686035760999\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527473\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"4.523\",\n        \"quote_volume\": \"395.21973999999994\",\n        \"timestamp\": \"1686035760999\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527459\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.386\",\n        \"quote_volume\": \"33.72868\",\n        \"timestamp\": \"1686035758015\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527458\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.386\",\n        \"quote_volume\": \"33.72868\",\n        \"timestamp\": \"1686035758015\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527457\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.456\",\n        \"quote_volume\": \"39.84528\",\n        \"timestamp\": \"1686035757487\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527456\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.456\",\n        \"quote_volume\": \"39.84528\",\n        \"timestamp\": \"1686035757487\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408527447\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.33\",\n        \"quote_volume\": \"28.8354\",\n        \"timestamp\": \"1686035756422\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408527446\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.33\",\n        \"quote_volume\": \"28.8354\",\n        \"timestamp\": \"1686035756422\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408526487\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686035579540\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408526485\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686035579540\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408525462\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9620599999999999\",\n        \"timestamp\": \"1686035332679\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408525463\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9620599999999999\",\n        \"timestamp\": \"1686035332679\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408524091\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04844\",\n        \"timestamp\": \"1686035085460\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408524090\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04844\",\n        \"timestamp\": \"1686035085460\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408523205\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.133\",\n        \"quote_volume\": \"11.60425\",\n        \"timestamp\": \"1686034885850\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408523204\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.133\",\n        \"quote_volume\": \"11.60425\",\n        \"timestamp\": \"1686034885850\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408523021\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.95975\",\n        \"timestamp\": \"1686034838195\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408523023\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.95975\",\n        \"timestamp\": \"1686034838195\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408522659\",\n        \"price\": \"87.21\",\n        \"base_volume\": \"4.944\",\n        \"quote_volume\": \"431.16623999999996\",\n        \"timestamp\": \"1686034773811\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408522658\",\n        \"price\": \"87.21\",\n        \"base_volume\": \"4.944\",\n        \"quote_volume\": \"431.16623999999996\",\n        \"timestamp\": \"1686034773811\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408522657\",\n        \"price\": \"87.21\",\n        \"base_volume\": \"0.257\",\n        \"quote_volume\": \"22.412969999999998\",\n        \"timestamp\": \"1686034773790\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408522656\",\n        \"price\": \"87.21\",\n        \"base_volume\": \"0.257\",\n        \"quote_volume\": \"22.412969999999998\",\n        \"timestamp\": \"1686034773790\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408522654\",\n        \"price\": \"87.23\",\n        \"base_volume\": \"0.476\",\n        \"quote_volume\": \"41.52148\",\n        \"timestamp\": \"1686034773766\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408522655\",\n        \"price\": \"87.23\",\n        \"base_volume\": \"0.476\",\n        \"quote_volume\": \"41.52148\",\n        \"timestamp\": \"1686034773766\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408521618\",\n        \"price\": \"87.31\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96041\",\n        \"timestamp\": \"1686034590942\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408521619\",\n        \"price\": \"87.31\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96041\",\n        \"timestamp\": \"1686034590942\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408521370\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.296\",\n        \"quote_volume\": \"25.83784\",\n        \"timestamp\": \"1686034536512\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408521371\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.296\",\n        \"quote_volume\": \"25.83784\",\n        \"timestamp\": \"1686034536512\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408521366\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.284\",\n        \"quote_volume\": \"24.79036\",\n        \"timestamp\": \"1686034535983\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408521367\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.284\",\n        \"quote_volume\": \"24.79036\",\n        \"timestamp\": \"1686034535983\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408521149\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"5.181\",\n        \"quote_volume\": \"452.50854000000004\",\n        \"timestamp\": \"1686034489667\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408521148\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"5.181\",\n        \"quote_volume\": \"452.50854000000004\",\n        \"timestamp\": \"1686034489667\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408521082\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.145\",\n        \"quote_volume\": \"12.664299999999999\",\n        \"timestamp\": \"1686034471423\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408521083\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.145\",\n        \"quote_volume\": \"12.664299999999999\",\n        \"timestamp\": \"1686034471423\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520925\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.405\",\n        \"quote_volume\": \"35.3727\",\n        \"timestamp\": \"1686034427392\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520924\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.405\",\n        \"quote_volume\": \"35.3727\",\n        \"timestamp\": \"1686034427392\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408520852\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.238\",\n        \"quote_volume\": \"20.78692\",\n        \"timestamp\": \"1686034405949\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408520853\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.238\",\n        \"quote_volume\": \"20.78692\",\n        \"timestamp\": \"1686034405949\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520671\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.46\",\n        \"quote_volume\": \"40.1764\",\n        \"timestamp\": \"1686034360461\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520670\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.46\",\n        \"quote_volume\": \"40.1764\",\n        \"timestamp\": \"1686034360461\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408520619\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9607399999999999\",\n        \"timestamp\": \"1686034344254\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520618\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9607399999999999\",\n        \"timestamp\": \"1686034344254\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408520503\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.204\",\n        \"quote_volume\": \"17.81736\",\n        \"timestamp\": \"1686034316260\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408520502\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.204\",\n        \"quote_volume\": \"17.81736\",\n        \"timestamp\": \"1686034316260\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408519852\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"0.002\",\n        \"quote_volume\": \"0.17472000000000001\",\n        \"timestamp\": \"1686034189829\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408519853\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"0.002\",\n        \"quote_volume\": \"0.17472000000000001\",\n        \"timestamp\": \"1686034189829\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408519851\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"5.788\",\n        \"quote_volume\": \"505.63968\",\n        \"timestamp\": \"1686034189811\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408519850\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"5.788\",\n        \"quote_volume\": \"505.63968\",\n        \"timestamp\": \"1686034189811\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408519352\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9607399999999999\",\n        \"timestamp\": \"1686034097035\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408519353\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9607399999999999\",\n        \"timestamp\": \"1686034097035\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408519020\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.461\",\n        \"quote_volume\": \"40.25452\",\n        \"timestamp\": \"1686034047932\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408519021\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.461\",\n        \"quote_volume\": \"40.25452\",\n        \"timestamp\": \"1686034047932\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408518267\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.324\",\n        \"quote_volume\": \"28.269000000000002\",\n        \"timestamp\": \"1686033902490\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408518266\",\n        \"price\": \"87.25\",\n        \"base_volume\": \"0.324\",\n        \"quote_volume\": \"28.269000000000002\",\n        \"timestamp\": \"1686033902490\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408518112\",\n        \"price\": \"87.31\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96041\",\n        \"timestamp\": \"1686033849773\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408518113\",\n        \"price\": \"87.31\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96041\",\n        \"timestamp\": \"1686033849773\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408517434\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.307\",\n        \"quote_volume\": \"26.807239999999997\",\n        \"timestamp\": \"1686033632758\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408517435\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.307\",\n        \"quote_volume\": \"26.807239999999997\",\n        \"timestamp\": \"1686033632758\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408517259\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9605199999999998\",\n        \"timestamp\": \"1686033603063\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408517258\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9605199999999998\",\n        \"timestamp\": \"1686033603063\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408517045\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"5.7\",\n        \"quote_volume\": \"497.952\",\n        \"timestamp\": \"1686033561245\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408517044\",\n        \"price\": \"87.36\",\n        \"base_volume\": \"5.7\",\n        \"quote_volume\": \"497.952\",\n        \"timestamp\": \"1686033561245\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408517043\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686033561228\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408517042\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686033561228\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408516007\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686033355837\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408516006\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96129\",\n        \"timestamp\": \"1686033355837\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408515450\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.136\",\n        \"quote_volume\": \"11.88504\",\n        \"timestamp\": \"1686033196232\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408515451\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.136\",\n        \"quote_volume\": \"11.88504\",\n        \"timestamp\": \"1686033196232\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408515077\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04904\",\n        \"timestamp\": \"1686033108601\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408515076\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04904\",\n        \"timestamp\": \"1686033108601\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408513808\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04964\",\n        \"timestamp\": \"1686032861379\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408513809\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04964\",\n        \"timestamp\": \"1686032861379\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408512540\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.142\",\n        \"quote_volume\": \"12.439199999999998\",\n        \"timestamp\": \"1686032656161\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408512541\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.142\",\n        \"quote_volume\": \"12.439199999999998\",\n        \"timestamp\": \"1686032656161\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408512538\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0512\",\n        \"timestamp\": \"1686032656144\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408512539\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0512\",\n        \"timestamp\": \"1686032656144\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408512302\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0512\",\n        \"timestamp\": \"1686032614076\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408512304\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0512\",\n        \"timestamp\": \"1686032614076\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408511985\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.036\",\n        \"quote_volume\": \"3.1553999999999998\",\n        \"timestamp\": \"1686032565525\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408511984\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.036\",\n        \"quote_volume\": \"3.1553999999999998\",\n        \"timestamp\": \"1686032565525\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408511426\",\n        \"price\": \"87.61\",\n        \"base_volume\": \"5.765\",\n        \"quote_volume\": \"505.07165\",\n        \"timestamp\": \"1686032485630\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408511427\",\n        \"price\": \"87.61\",\n        \"base_volume\": \"5.765\",\n        \"quote_volume\": \"505.07165\",\n        \"timestamp\": \"1686032485630\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510914\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.461\",\n        \"quote_volume\": \"40.37899\",\n        \"timestamp\": \"1686032409638\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510915\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.461\",\n        \"quote_volume\": \"40.37899\",\n        \"timestamp\": \"1686032409638\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510679\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9635999999999999\",\n        \"timestamp\": \"1686032366861\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510678\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9635999999999999\",\n        \"timestamp\": \"1686032366861\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510557\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"5.229\",\n        \"quote_volume\": \"457.90353\",\n        \"timestamp\": \"1686032343890\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510556\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"5.229\",\n        \"quote_volume\": \"457.90353\",\n        \"timestamp\": \"1686032343890\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510536\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.45\",\n        \"quote_volume\": \"39.4065\",\n        \"timestamp\": \"1686032341130\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510537\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.45\",\n        \"quote_volume\": \"39.4065\",\n        \"timestamp\": \"1686032341130\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510165\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"5.46\",\n        \"quote_volume\": \"477.75\",\n        \"timestamp\": \"1686032274066\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408510164\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"5.46\",\n        \"quote_volume\": \"477.75\",\n        \"timestamp\": \"1686032274066\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510150\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.337\",\n        \"quote_volume\": \"29.4875\",\n        \"timestamp\": \"1686032271543\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408510151\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.337\",\n        \"quote_volume\": \"29.4875\",\n        \"timestamp\": \"1686032271543\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408509397\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96316\",\n        \"timestamp\": \"1686032119622\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408509396\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96316\",\n        \"timestamp\": \"1686032119622\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408508146\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04988\",\n        \"timestamp\": \"1686031872904\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408508147\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04988\",\n        \"timestamp\": \"1686031872904\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506957\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9624999999999999\",\n        \"timestamp\": \"1686031625700\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506956\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9624999999999999\",\n        \"timestamp\": \"1686031625700\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506475\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.423\",\n        \"quote_volume\": \"37.033649999999994\",\n        \"timestamp\": \"1686031513136\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506474\",\n        \"price\": \"87.55\",\n        \"base_volume\": \"0.423\",\n        \"quote_volume\": \"37.033649999999994\",\n        \"timestamp\": \"1686031513136\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506420\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.49\",\n        \"quote_volume\": \"42.909299999999995\",\n        \"timestamp\": \"1686031501899\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506421\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.49\",\n        \"quote_volume\": \"42.909299999999995\",\n        \"timestamp\": \"1686031501899\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506418\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"5.277\",\n        \"quote_volume\": \"462.52905000000004\",\n        \"timestamp\": \"1686031501879\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506419\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"5.277\",\n        \"quote_volume\": \"462.52905000000004\",\n        \"timestamp\": \"1686031501879\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506372\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.139\",\n        \"quote_volume\": \"12.183350000000003\",\n        \"timestamp\": \"1686031491021\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506373\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.139\",\n        \"quote_volume\": \"12.183350000000003\",\n        \"timestamp\": \"1686031491021\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506282\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.327\",\n        \"quote_volume\": \"28.661550000000002\",\n        \"timestamp\": \"1686031468314\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408506283\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.327\",\n        \"quote_volume\": \"28.661550000000002\",\n        \"timestamp\": \"1686031468314\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506159\",\n        \"price\": \"87.7\",\n        \"base_volume\": \"0.208\",\n        \"quote_volume\": \"18.2416\",\n        \"timestamp\": \"1686031446880\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408506158\",\n        \"price\": \"87.7\",\n        \"base_volume\": \"0.208\",\n        \"quote_volume\": \"18.2416\",\n        \"timestamp\": \"1686031446880\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505782\",\n        \"price\": \"87.73\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9650299999999999\",\n        \"timestamp\": \"1686031378988\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505783\",\n        \"price\": \"87.73\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9650299999999999\",\n        \"timestamp\": \"1686031378988\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408505278\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.588\",\n        \"quote_volume\": \"51.60288\",\n        \"timestamp\": \"1686031290641\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505279\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.588\",\n        \"quote_volume\": \"51.60288\",\n        \"timestamp\": \"1686031290641\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408505276\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"5.21\",\n        \"quote_volume\": \"457.3338\",\n        \"timestamp\": \"1686031290624\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505277\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"5.21\",\n        \"quote_volume\": \"457.3338\",\n        \"timestamp\": \"1686031290624\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408505250\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.235\",\n        \"quote_volume\": \"20.6283\",\n        \"timestamp\": \"1686031288570\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505251\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.235\",\n        \"quote_volume\": \"20.6283\",\n        \"timestamp\": \"1686031288570\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408505100\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.364\",\n        \"quote_volume\": \"31.95192\",\n        \"timestamp\": \"1686031267104\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408505101\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.364\",\n        \"quote_volume\": \"31.95192\",\n        \"timestamp\": \"1686031267104\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408504366\",\n        \"price\": \"87.8\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0536\",\n        \"timestamp\": \"1686031132323\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408504367\",\n        \"price\": \"87.8\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0536\",\n        \"timestamp\": \"1686031132323\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408504010\",\n        \"price\": \"87.81\",\n        \"base_volume\": \"0.355\",\n        \"quote_volume\": \"31.172549999999998\",\n        \"timestamp\": \"1686031065968\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408504011\",\n        \"price\": \"87.81\",\n        \"base_volume\": \"0.355\",\n        \"quote_volume\": \"31.172549999999998\",\n        \"timestamp\": \"1686031065968\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408504008\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"5.464\",\n        \"quote_volume\": \"479.52064000000007\",\n        \"timestamp\": \"1686031065950\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408504009\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"5.464\",\n        \"quote_volume\": \"479.52064000000007\",\n        \"timestamp\": \"1686031065950\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408503982\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.302\",\n        \"quote_volume\": \"26.50352\",\n        \"timestamp\": \"1686031062688\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408503983\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.302\",\n        \"quote_volume\": \"26.50352\",\n        \"timestamp\": \"1686031062688\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408503634\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"6.352\",\n        \"quote_volume\": \"556.7528000000001\",\n        \"timestamp\": \"1686030996723\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408503635\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"6.352\",\n        \"quote_volume\": \"556.7528000000001\",\n        \"timestamp\": \"1686030996723\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408503632\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.065\",\n        \"quote_volume\": \"5.69595\",\n        \"timestamp\": \"1686030996706\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408503633\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.065\",\n        \"quote_volume\": \"5.69595\",\n        \"timestamp\": \"1686030996706\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408503627\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"5.732\",\n        \"quote_volume\": \"502.29516\",\n        \"timestamp\": \"1686030996172\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408503626\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"5.732\",\n        \"quote_volume\": \"502.29516\",\n        \"timestamp\": \"1686030996172\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408503066\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686030885127\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408503067\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686030885127\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408502954\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.181\",\n        \"quote_volume\": \"15.85379\",\n        \"timestamp\": \"1686030863466\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408502955\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.181\",\n        \"quote_volume\": \"15.85379\",\n        \"timestamp\": \"1686030863466\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408502830\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.395\",\n        \"quote_volume\": \"34.59805\",\n        \"timestamp\": \"1686030840372\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408502831\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.395\",\n        \"quote_volume\": \"34.59805\",\n        \"timestamp\": \"1686030840372\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408502812\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.241\",\n        \"quote_volume\": \"21.10919\",\n        \"timestamp\": \"1686030838776\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408502813\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.241\",\n        \"quote_volume\": \"21.10919\",\n        \"timestamp\": \"1686030838776\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408502717\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.288\",\n        \"quote_volume\": \"25.22592\",\n        \"timestamp\": \"1686030818298\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408502714\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.288\",\n        \"quote_volume\": \"25.22592\",\n        \"timestamp\": \"1686030818298\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408501691\",\n        \"price\": \"87.62\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96382\",\n        \"timestamp\": \"1686030637872\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408501690\",\n        \"price\": \"87.62\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96382\",\n        \"timestamp\": \"1686030637872\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408500366\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96448\",\n        \"timestamp\": \"1686030390643\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408500367\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96448\",\n        \"timestamp\": \"1686030390643\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408498921\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.265\",\n        \"quote_volume\": \"23.22725\",\n        \"timestamp\": \"1686030146226\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408498920\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.265\",\n        \"quote_volume\": \"23.22725\",\n        \"timestamp\": \"1686030146226\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408498887\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96415\",\n        \"timestamp\": \"1686030143950\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408498886\",\n        \"price\": \"87.65\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96415\",\n        \"timestamp\": \"1686030143950\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408497696\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9632699999999998\",\n        \"timestamp\": \"1686029897284\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408497697\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9632699999999998\",\n        \"timestamp\": \"1686029897284\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408496596\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96316\",\n        \"timestamp\": \"1686029650075\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408496597\",\n        \"price\": \"87.56\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96316\",\n        \"timestamp\": \"1686029650075\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408496348\",\n        \"price\": \"87.61\",\n        \"base_volume\": \"5.735\",\n        \"quote_volume\": \"502.44335\",\n        \"timestamp\": \"1686029587815\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408496349\",\n        \"price\": \"87.61\",\n        \"base_volume\": \"5.735\",\n        \"quote_volume\": \"502.44335\",\n        \"timestamp\": \"1686029587815\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408495708\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"5.391\",\n        \"quote_volume\": \"472.19769\",\n        \"timestamp\": \"1686029435272\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408495709\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"5.391\",\n        \"quote_volume\": \"472.19769\",\n        \"timestamp\": \"1686029435272\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408495665\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.217\",\n        \"quote_volume\": \"19.00703\",\n        \"timestamp\": \"1686029425810\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408495664\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.217\",\n        \"quote_volume\": \"19.00703\",\n        \"timestamp\": \"1686029425810\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408495660\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.181\",\n        \"quote_volume\": \"15.85379\",\n        \"timestamp\": \"1686029423686\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408495658\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.181\",\n        \"quote_volume\": \"15.85379\",\n        \"timestamp\": \"1686029423686\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408495556\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05108\",\n        \"timestamp\": \"1686029403378\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408495557\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05108\",\n        \"timestamp\": \"1686029403378\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408494705\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05084\",\n        \"timestamp\": \"1686029202473\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408494704\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05084\",\n        \"timestamp\": \"1686029202473\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408494510\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05084\",\n        \"timestamp\": \"1686029156182\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408494512\",\n        \"price\": \"87.57\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05084\",\n        \"timestamp\": \"1686029156182\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408493315\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686028908961\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408493314\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686028908961\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408492774\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.753\",\n        \"quote_volume\": \"503.96279999999996\",\n        \"timestamp\": \"1686028797018\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408492775\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.753\",\n        \"quote_volume\": \"503.96279999999996\",\n        \"timestamp\": \"1686028797018\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408492204\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05108\",\n        \"timestamp\": \"1686028661700\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408492205\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05108\",\n        \"timestamp\": \"1686028661700\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408490891\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686028414457\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408490890\",\n        \"price\": \"87.58\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05096\",\n        \"timestamp\": \"1686028414457\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408490104\",\n        \"price\": \"87.75\",\n        \"base_volume\": \"0.346\",\n        \"quote_volume\": \"30.3615\",\n        \"timestamp\": \"1686028240843\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408490105\",\n        \"price\": \"87.75\",\n        \"base_volume\": \"0.346\",\n        \"quote_volume\": \"30.3615\",\n        \"timestamp\": \"1686028240843\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408490100\",\n        \"price\": \"87.75\",\n        \"base_volume\": \"0.368\",\n        \"quote_volume\": \"32.292\",\n        \"timestamp\": \"1686028240315\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408490101\",\n        \"price\": \"87.75\",\n        \"base_volume\": \"0.368\",\n        \"quote_volume\": \"32.292\",\n        \"timestamp\": \"1686028240315\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408489650\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.449\",\n        \"quote_volume\": \"39.40424\",\n        \"timestamp\": \"1686028167956\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408489651\",\n        \"price\": \"87.76\",\n        \"base_volume\": \"0.449\",\n        \"quote_volume\": \"39.40424\",\n        \"timestamp\": \"1686028167956\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408489648\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"5.287\",\n        \"quote_volume\": \"464.09286\",\n        \"timestamp\": \"1686028167939\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408489649\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"5.287\",\n        \"quote_volume\": \"464.09286\",\n        \"timestamp\": \"1686028167939\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408489646\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05336\",\n        \"timestamp\": \"1686028167730\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408489647\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05336\",\n        \"timestamp\": \"1686028167730\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408489582\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.384\",\n        \"quote_volume\": \"33.70752\",\n        \"timestamp\": \"1686028152236\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408489583\",\n        \"price\": \"87.78\",\n        \"base_volume\": \"0.384\",\n        \"quote_volume\": \"33.70752\",\n        \"timestamp\": \"1686028152236\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408489032\",\n        \"price\": \"87.85\",\n        \"base_volume\": \"0.233\",\n        \"quote_volume\": \"20.46905\",\n        \"timestamp\": \"1686027968077\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408489033\",\n        \"price\": \"87.85\",\n        \"base_volume\": \"0.233\",\n        \"quote_volume\": \"20.46905\",\n        \"timestamp\": \"1686027968077\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408488765\",\n        \"price\": \"87.89\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05468\",\n        \"timestamp\": \"1686027920531\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408488764\",\n        \"price\": \"87.89\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05468\",\n        \"timestamp\": \"1686027920531\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408487936\",\n        \"price\": \"87.83\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05396\",\n        \"timestamp\": \"1686027673818\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408487937\",\n        \"price\": \"87.83\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05396\",\n        \"timestamp\": \"1686027673818\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408486563\",\n        \"price\": \"87.85\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0542\",\n        \"timestamp\": \"1686027426603\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408486562\",\n        \"price\": \"87.85\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0542\",\n        \"timestamp\": \"1686027426603\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408485386\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.09\",\n        \"quote_volume\": \"7.8912\",\n        \"timestamp\": \"1686027232502\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408485387\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.09\",\n        \"quote_volume\": \"7.8912\",\n        \"timestamp\": \"1686027232502\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408485383\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"5.707\",\n        \"quote_volume\": \"500.38976\",\n        \"timestamp\": \"1686027231974\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408485382\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"5.707\",\n        \"quote_volume\": \"500.38976\",\n        \"timestamp\": \"1686027231974\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408485084\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.202\",\n        \"quote_volume\": \"17.711360000000003\",\n        \"timestamp\": \"1686027185305\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408485085\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.202\",\n        \"quote_volume\": \"17.711360000000003\",\n        \"timestamp\": \"1686027185305\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408485062\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0521600000000002\",\n        \"timestamp\": \"1686027179912\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408485063\",\n        \"price\": \"87.68\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0521600000000002\",\n        \"timestamp\": \"1686027179912\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408484539\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.724\",\n        \"quote_volume\": \"501.4224\",\n        \"timestamp\": \"1686027090257\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408484538\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.724\",\n        \"quote_volume\": \"501.4224\",\n        \"timestamp\": \"1686027090257\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408483955\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"5.763\",\n        \"quote_volume\": \"505.06932\",\n        \"timestamp\": \"1686026959309\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408483954\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"5.763\",\n        \"quote_volume\": \"505.06932\",\n        \"timestamp\": \"1686026959309\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408483861\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.143\",\n        \"quote_volume\": \"12.53252\",\n        \"timestamp\": \"1686026943218\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408483860\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.143\",\n        \"quote_volume\": \"12.53252\",\n        \"timestamp\": \"1686026943218\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408483821\",\n        \"price\": \"87.67\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96437\",\n        \"timestamp\": \"1686026933103\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408483820\",\n        \"price\": \"87.67\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96437\",\n        \"timestamp\": \"1686026933103\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408483589\",\n        \"price\": \"87.67\",\n        \"base_volume\": \"5.754\",\n        \"quote_volume\": \"504.45318\",\n        \"timestamp\": \"1686026876112\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408483588\",\n        \"price\": \"87.67\",\n        \"base_volume\": \"5.754\",\n        \"quote_volume\": \"504.45318\",\n        \"timestamp\": \"1686026876112\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482703\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.278\",\n        \"quote_volume\": \"24.361140000000002\",\n        \"timestamp\": \"1686026693147\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482702\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.278\",\n        \"quote_volume\": \"24.361140000000002\",\n        \"timestamp\": \"1686026693147\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482661\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9639299999999998\",\n        \"timestamp\": \"1686026686438\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482660\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9639299999999998\",\n        \"timestamp\": \"1686026686438\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482593\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.248\",\n        \"quote_volume\": \"21.732239999999997\",\n        \"timestamp\": \"1686026672778\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482592\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.248\",\n        \"quote_volume\": \"21.732239999999997\",\n        \"timestamp\": \"1686026672778\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482565\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.666\",\n        \"quote_volume\": \"58.361580000000004\",\n        \"timestamp\": \"1686026665722\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482564\",\n        \"price\": \"87.63\",\n        \"base_volume\": \"0.666\",\n        \"quote_volume\": \"58.361580000000004\",\n        \"timestamp\": \"1686026665722\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482562\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.012\",\n        \"quote_volume\": \"439.05119999999994\",\n        \"timestamp\": \"1686026665708\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482563\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"5.012\",\n        \"quote_volume\": \"439.05119999999994\",\n        \"timestamp\": \"1686026665708\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482498\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.334\",\n        \"quote_volume\": \"29.258399999999998\",\n        \"timestamp\": \"1686026649882\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408482499\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.334\",\n        \"quote_volume\": \"29.258399999999998\",\n        \"timestamp\": \"1686026649882\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482381\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.37\",\n        \"quote_volume\": \"32.412\",\n        \"timestamp\": \"1686026626892\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408482380\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.37\",\n        \"quote_volume\": \"32.412\",\n        \"timestamp\": \"1686026626892\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408481653\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9635999999999999\",\n        \"timestamp\": \"1686026439234\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408481652\",\n        \"price\": \"87.6\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9635999999999999\",\n        \"timestamp\": \"1686026439234\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408480975\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"5.091\",\n        \"quote_volume\": \"446.17524000000003\",\n        \"timestamp\": \"1686026247891\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408480974\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"5.091\",\n        \"quote_volume\": \"446.17524000000003\",\n        \"timestamp\": \"1686026247891\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408480899\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.221\",\n        \"quote_volume\": \"19.36844\",\n        \"timestamp\": \"1686026234795\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408480898\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.221\",\n        \"quote_volume\": \"19.36844\",\n        \"timestamp\": \"1686026234795\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408480815\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.399\",\n        \"quote_volume\": \"34.968360000000004\",\n        \"timestamp\": \"1686026213532\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408480814\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.399\",\n        \"quote_volume\": \"34.968360000000004\",\n        \"timestamp\": \"1686026213532\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408480735\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9640399999999999\",\n        \"timestamp\": \"1686026192392\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408480734\",\n        \"price\": \"87.64\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9640399999999999\",\n        \"timestamp\": \"1686026192392\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408479427\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96349\",\n        \"timestamp\": \"1686025945716\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408479426\",\n        \"price\": \"87.59\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96349\",\n        \"timestamp\": \"1686025945716\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408478275\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96217\",\n        \"timestamp\": \"1686025698512\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408478274\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96217\",\n        \"timestamp\": \"1686025698512\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408477849\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.444\",\n        \"quote_volume\": \"38.84556\",\n        \"timestamp\": \"1686025608943\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408477848\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.444\",\n        \"quote_volume\": \"38.84556\",\n        \"timestamp\": \"1686025608943\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408477183\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9624999999999999\",\n        \"timestamp\": \"1686025451817\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408477182\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.9624999999999999\",\n        \"timestamp\": \"1686025451817\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408475861\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96217\",\n        \"timestamp\": \"1686025205146\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408475860\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.011\",\n        \"quote_volume\": \"0.96217\",\n        \"timestamp\": \"1686025205146\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408475727\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.406\",\n        \"quote_volume\": \"35.50470000000001\",\n        \"timestamp\": \"1686025181802\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408475726\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.406\",\n        \"quote_volume\": \"35.50470000000001\",\n        \"timestamp\": \"1686025181802\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408475363\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.163\",\n        \"quote_volume\": \"14.246200000000002\",\n        \"timestamp\": \"1686025094424\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408475362\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.163\",\n        \"quote_volume\": \"14.246200000000002\",\n        \"timestamp\": \"1686025094424\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408474817\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04916\",\n        \"timestamp\": \"1686024957939\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408474816\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04916\",\n        \"timestamp\": \"1686024957939\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408474735\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"0.216\",\n        \"quote_volume\": \"18.88272\",\n        \"timestamp\": \"1686024937529\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408474734\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"0.216\",\n        \"quote_volume\": \"18.88272\",\n        \"timestamp\": \"1686024937529\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408474567\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"5.719\",\n        \"quote_volume\": \"499.72622\",\n        \"timestamp\": \"1686024900423\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408474566\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"5.719\",\n        \"quote_volume\": \"499.72622\",\n        \"timestamp\": \"1686024900423\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408474223\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"5.319\",\n        \"quote_volume\": \"464.8806\",\n        \"timestamp\": \"1686024830663\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408474222\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"5.319\",\n        \"quote_volume\": \"464.8806\",\n        \"timestamp\": \"1686024830663\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408474099\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.421\",\n        \"quote_volume\": \"36.7954\",\n        \"timestamp\": \"1686024807447\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408474098\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.421\",\n        \"quote_volume\": \"36.7954\",\n        \"timestamp\": \"1686024807447\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408473887\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.038\",\n        \"quote_volume\": \"3.3234799999999995\",\n        \"timestamp\": \"1686024759576\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408473886\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"0.038\",\n        \"quote_volume\": \"3.3234799999999995\",\n        \"timestamp\": \"1686024759576\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408473884\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"5.731\",\n        \"quote_volume\": \"501.23326\",\n        \"timestamp\": \"1686024759048\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408473883\",\n        \"price\": \"87.46\",\n        \"base_volume\": \"5.731\",\n        \"quote_volume\": \"501.23326\",\n        \"timestamp\": \"1686024759048\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408473709\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05\",\n        \"timestamp\": \"1686024710688\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408473708\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.05\",\n        \"timestamp\": \"1686024710688\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408472895\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04976\",\n        \"timestamp\": \"1686024463988\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408472894\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04976\",\n        \"timestamp\": \"1686024463988\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408471899\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13581\",\n        \"timestamp\": \"1686024217309\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408471898\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13581\",\n        \"timestamp\": \"1686024217309\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408471155\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04892\",\n        \"timestamp\": \"1686023970647\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408471154\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04892\",\n        \"timestamp\": \"1686023970647\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408470805\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.426\",\n        \"quote_volume\": \"37.228139999999996\",\n        \"timestamp\": \"1686023899219\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408470804\",\n        \"price\": \"87.39\",\n        \"base_volume\": \"0.426\",\n        \"quote_volume\": \"37.228139999999996\",\n        \"timestamp\": \"1686023899219\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408470455\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.376\",\n        \"quote_volume\": \"32.83984\",\n        \"timestamp\": \"1686023829558\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408470454\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.376\",\n        \"quote_volume\": \"32.83984\",\n        \"timestamp\": \"1686023829558\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408470453\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.186\",\n        \"quote_volume\": \"16.241519999999998\",\n        \"timestamp\": \"1686023829540\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408470452\",\n        \"price\": \"87.32\",\n        \"base_volume\": \"0.186\",\n        \"quote_volume\": \"16.241519999999998\",\n        \"timestamp\": \"1686023829540\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408469953\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13477\",\n        \"timestamp\": \"1686023723418\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408469952\",\n        \"price\": \"87.29\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13477\",\n        \"timestamp\": \"1686023723418\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408468947\",\n        \"price\": \"87.35\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.1355499999999998\",\n        \"timestamp\": \"1686023476741\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408468946\",\n        \"price\": \"87.35\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.1355499999999998\",\n        \"timestamp\": \"1686023476741\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408468229\",\n        \"price\": \"87.3\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0476\",\n        \"timestamp\": \"1686023229543\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408468228\",\n        \"price\": \"87.3\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0476\",\n        \"timestamp\": \"1686023229543\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408468081\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.915\",\n        \"quote_volume\": \"79.94355\",\n        \"timestamp\": \"1686023198578\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408468080\",\n        \"price\": \"87.37\",\n        \"base_volume\": \"0.915\",\n        \"quote_volume\": \"79.94355\",\n        \"timestamp\": \"1686023198578\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408468078\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"4.898\",\n        \"quote_volume\": \"427.98723999999993\",\n        \"timestamp\": \"1686023198563\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408468079\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"4.898\",\n        \"quote_volume\": \"427.98723999999993\",\n        \"timestamp\": \"1686023198563\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408467969\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.341\",\n        \"quote_volume\": \"29.796580000000002\",\n        \"timestamp\": \"1686023173533\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408467968\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.341\",\n        \"quote_volume\": \"29.796580000000002\",\n        \"timestamp\": \"1686023173533\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408467959\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.449\",\n        \"quote_volume\": \"39.23362\",\n        \"timestamp\": \"1686023172472\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408467958\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.449\",\n        \"quote_volume\": \"39.23362\",\n        \"timestamp\": \"1686023172472\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408467785\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"5.687\",\n        \"quote_volume\": \"497.15754000000004\",\n        \"timestamp\": \"1686023126119\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408467784\",\n        \"price\": \"87.42\",\n        \"base_volume\": \"5.687\",\n        \"quote_volume\": \"497.15754000000004\",\n        \"timestamp\": \"1686023126119\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408467348\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0488000000000002\",\n        \"timestamp\": \"1686022982336\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408467349\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0488000000000002\",\n        \"timestamp\": \"1686022982336\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408467140\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.264\",\n        \"quote_volume\": \"23.06832\",\n        \"timestamp\": \"1686022925818\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408467141\",\n        \"price\": \"87.38\",\n        \"base_volume\": \"0.264\",\n        \"quote_volume\": \"23.06832\",\n        \"timestamp\": \"1686022925818\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408466733\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"5.681\",\n        \"quote_volume\": \"496.17854\",\n        \"timestamp\": \"1686022832447\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408466732\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"5.681\",\n        \"quote_volume\": \"496.17854\",\n        \"timestamp\": \"1686022832447\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408466351\",\n        \"price\": \"87.33\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04796\",\n        \"timestamp\": \"1686022735101\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408466350\",\n        \"price\": \"87.33\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04796\",\n        \"timestamp\": \"1686022735101\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408466181\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.123\",\n        \"quote_volume\": \"10.750200000000001\",\n        \"timestamp\": \"1686022701575\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408466180\",\n        \"price\": \"87.4\",\n        \"base_volume\": \"0.123\",\n        \"quote_volume\": \"10.750200000000001\",\n        \"timestamp\": \"1686022701575\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408465323\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0480800000000001\",\n        \"timestamp\": \"1686022488429\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408465322\",\n        \"price\": \"87.34\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.0480800000000001\",\n        \"timestamp\": \"1686022488429\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464617\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"3.943\",\n        \"quote_volume\": \"344.81535\",\n        \"timestamp\": \"1686022348887\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464615\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"3.943\",\n        \"quote_volume\": \"344.81535\",\n        \"timestamp\": \"1686022348887\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464593\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.263\",\n        \"quote_volume\": \"22.999350000000003\",\n        \"timestamp\": \"1686022345825\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464592\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.263\",\n        \"quote_volume\": \"22.999350000000003\",\n        \"timestamp\": \"1686022345825\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464585\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.472\",\n        \"quote_volume\": \"41.2764\",\n        \"timestamp\": \"1686022344763\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464584\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.472\",\n        \"quote_volume\": \"41.2764\",\n        \"timestamp\": \"1686022344763\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464463\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.199\",\n        \"quote_volume\": \"17.40255\",\n        \"timestamp\": \"1686022322326\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464462\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.199\",\n        \"quote_volume\": \"17.40255\",\n        \"timestamp\": \"1686022322326\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464459\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.472\",\n        \"quote_volume\": \"41.2764\",\n        \"timestamp\": \"1686022321796\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464458\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.472\",\n        \"quote_volume\": \"41.2764\",\n        \"timestamp\": \"1686022321796\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464303\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.21\",\n        \"quote_volume\": \"18.3645\",\n        \"timestamp\": \"1686022301157\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464302\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.21\",\n        \"quote_volume\": \"18.3645\",\n        \"timestamp\": \"1686022301157\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408464281\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.232\",\n        \"quote_volume\": \"20.288400000000003\",\n        \"timestamp\": \"1686022299039\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408464280\",\n        \"price\": \"87.45\",\n        \"base_volume\": \"0.232\",\n        \"quote_volume\": \"20.288400000000003\",\n        \"timestamp\": \"1686022299039\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408463953\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04964\",\n        \"timestamp\": \"1686022241770\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408463952\",\n        \"price\": \"87.47\",\n        \"base_volume\": \"0.012\",\n        \"quote_volume\": \"1.04964\",\n        \"timestamp\": \"1686022241770\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408463627\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.329\",\n        \"quote_volume\": \"28.7875\",\n        \"timestamp\": \"1686022186863\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408463626\",\n        \"price\": \"87.5\",\n        \"base_volume\": \"0.329\",\n        \"quote_volume\": \"28.7875\",\n        \"timestamp\": \"1686022186863\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408462601\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13737\",\n        \"timestamp\": \"1686021995106\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408462600\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13737\",\n        \"timestamp\": \"1686021995106\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408462591\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"4.995\",\n        \"quote_volume\": \"437.1624\",\n        \"timestamp\": \"1686021993012\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408462590\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"4.995\",\n        \"quote_volume\": \"437.1624\",\n        \"timestamp\": \"1686021993012\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408462566\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.254\",\n        \"quote_volume\": \"22.23008\",\n        \"timestamp\": \"1686021988114\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408462567\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.254\",\n        \"quote_volume\": \"22.23008\",\n        \"timestamp\": \"1686021988114\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408462554\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.135\",\n        \"quote_volume\": \"11.8152\",\n        \"timestamp\": \"1686021986006\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408462556\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.135\",\n        \"quote_volume\": \"11.8152\",\n        \"timestamp\": \"1686021986006\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408462353\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.399\",\n        \"quote_volume\": \"34.92048\",\n        \"timestamp\": \"1686021942638\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408462352\",\n        \"price\": \"87.52\",\n        \"base_volume\": \"0.399\",\n        \"quote_volume\": \"34.92048\",\n        \"timestamp\": \"1686021942638\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408461649\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.333\",\n        \"quote_volume\": \"29.130840000000003\",\n        \"timestamp\": \"1686021783427\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408461648\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.333\",\n        \"quote_volume\": \"29.130840000000003\",\n        \"timestamp\": \"1686021783427\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408461489\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13724\",\n        \"timestamp\": \"1686021748442\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408461488\",\n        \"price\": \"87.48\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13724\",\n        \"timestamp\": \"1686021748442\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408460215\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13672\",\n        \"timestamp\": \"1686021501240\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408460214\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13672\",\n        \"timestamp\": \"1686021501240\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408459637\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.219\",\n        \"quote_volume\": \"19.142789999999998\",\n        \"timestamp\": \"1686021384203\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408459636\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.219\",\n        \"quote_volume\": \"19.142789999999998\",\n        \"timestamp\": \"1686021384203\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408459635\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.269\",\n        \"quote_volume\": \"23.51329\",\n        \"timestamp\": \"1686021383668\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408459634\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.269\",\n        \"quote_volume\": \"23.51329\",\n        \"timestamp\": \"1686021383668\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408458981\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.1363299999999998\",\n        \"timestamp\": \"1686021254000\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408458980\",\n        \"price\": \"87.41\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.1363299999999998\",\n        \"timestamp\": \"1686021254000\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408457945\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13737\",\n        \"timestamp\": \"1686021006630\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408457944\",\n        \"price\": \"87.49\",\n        \"base_volume\": \"0.013\",\n        \"quote_volume\": \"1.13737\",\n        \"timestamp\": \"1686021006630\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408457239\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.439\",\n        \"quote_volume\": \"38.38616\",\n        \"timestamp\": \"1686020862788\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408457238\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"0.439\",\n        \"quote_volume\": \"38.38616\",\n        \"timestamp\": \"1686020862788\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408457171\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"4.779\",\n        \"quote_volume\": \"417.87575999999996\",\n        \"timestamp\": \"1686020844222\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408457170\",\n        \"price\": \"87.44\",\n        \"base_volume\": \"4.779\",\n        \"quote_volume\": \"417.87575999999996\",\n        \"timestamp\": \"1686020844222\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408457169\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.34\",\n        \"quote_volume\": \"29.726200000000006\",\n        \"timestamp\": \"1686020844205\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408457168\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.34\",\n        \"quote_volume\": \"29.726200000000006\",\n        \"timestamp\": \"1686020844205\",\n        \"type\": \"Buy\"\n    },\n    {\n        \"trade_id\": \"408457167\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.699\",\n        \"quote_volume\": \"61.11357\",\n        \"timestamp\": \"1686020844187\",\n        \"type\": \"Sell\"\n    },\n    {\n        \"trade_id\": \"408457166\",\n        \"price\": \"87.43\",\n        \"base_volume\": \"0.699\",\n        \"quote_volume\": \"61.11357\",\n        \"timestamp\": \"1686020844187\",\n        \"type\": \"Buy\"\n    }\n]"}],"_postman_id":"dd4daee1-7fcd-4a98-95ed-b3377a15206c"},{"name":"Get currency list","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"bc91f231-5d93-4d5c-9969-951be3f3d684"}}],"id":"9570087c-f1a3-4841-9cee-5f7c1f7dc14a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api-v2.bitdelta.com/open/api/v1/currency","description":"<p>This API will be used to get supported digital currencies</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","currency"],"host":["api-v2","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"9e9e0b54-5d5c-4410-a2e6-962d610d8650","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":"https://api-v2.bitdelta.com/open/api/v1/currency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        {\n            \"precision\": 6,\n            \"order\": 1,\n            \"coin\": \"BTC\",\n            \"name\": \"Bitcoin\",\n            \"active\": true,\n            \"dmin\": 0.0005,\n            \"dmax\": 100000,\n            \"wmax\": 100,\n            \"wmin\": 0.002,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"BTC\",\n            \"dfee\": 0,\n            \"wfee\": 0.001,\n            \"tokenratio\": 160000,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 1,\n            \"networks\": [\n                {\n                    \"network\": \"Bitcoin\",\n                    \"display\": \"Bitcoin\"\n                }\n            ],\n            \"unified_cid\": 1,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"BTC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 3,\n            \"coin\": \"ETH\",\n            \"name\": \"Ethereum\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 100000,\n            \"wmax\": 1000,\n            \"wmin\": 0.02,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ETH\",\n            \"dfee\": 0,\n            \"wfee\": 0.01,\n            \"tokenratio\": 12000,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 2,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 1027,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ETH\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 5,\n            \"coin\": \"RXT\",\n            \"name\": \"RIMAUNANGIS(BSC Chain)\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 100000000,\n            \"wmax\": 100000000,\n            \"wmin\": 5,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"RXT_BSC_TD8U\",\n            \"dfee\": 0,\n            \"wfee\": 5,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 47,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 22076,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"RXT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 5,\n            \"coin\": \"LTC\",\n            \"name\": \"Litecoin\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 100000,\n            \"wmax\": 1000,\n            \"wmin\": 0.004,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"LTC\",\n            \"dfee\": 0,\n            \"wfee\": 0.002,\n            \"tokenratio\": 652,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 5,\n            \"networks\": [\n                {\n                    \"network\": \"Litecoin\",\n                    \"display\": \"Litecoin\"\n                }\n            ],\n            \"unified_cid\": 2,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"LTC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 6,\n            \"coin\": \"XRP\",\n            \"name\": \"Ripple\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 10000000,\n            \"wmin\": 40,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"XRP\",\n            \"dfee\": 0,\n            \"wfee\": 0.5,\n            \"tokenratio\": 4.3,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 4,\n            \"networks\": [\n                {\n                    \"network\": \"Ripple\",\n                    \"display\": \"Ripple\"\n                }\n            ],\n            \"unified_cid\": 52,\n            \"tag_req\": true,\n            \"network_confirmation\": 8,\n            \"currency\": \"XRP\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 7,\n            \"coin\": \"BCH\",\n            \"name\": \"Bitcoin Cash\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 10000,\n            \"wmin\": 0.24,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"BCH\",\n            \"dfee\": 0,\n            \"wfee\": 0.12,\n            \"tokenratio\": 9000,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 3,\n            \"networks\": [\n                {\n                    \"network\": \"Bitcoin Cash\",\n                    \"display\": \"Bitcoin Cash\"\n                }\n            ],\n            \"unified_cid\": 1831,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"BCH\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 8,\n            \"coin\": \"USDT\",\n            \"name\": \"Tether\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 100000000,\n            \"wmin\": 50,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"USDT_ERC20\",\n            \"dfee\": 0,\n            \"wfee\": 6,\n            \"tokenratio\": 4,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 6,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                },\n                {\n                    \"network\": \"Tron\",\n                    \"display\": \"Tron\"\n                }\n            ],\n            \"unified_cid\": 825,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"USDT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 9,\n            \"coin\": \"UNI\",\n            \"name\": \"Uniswap\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 1000000,\n            \"wmin\": 3,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"UNI\",\n            \"dfee\": 0,\n            \"wfee\": 1.5,\n            \"tokenratio\": 4.3,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 8,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 4307,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"UNI\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 10,\n            \"coin\": \"SAND\",\n            \"name\": \"The Sandbox\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000000,\n            \"wmax\": 1000000000,\n            \"wmin\": 12,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"SAND\",\n            \"dfee\": 0,\n            \"wfee\": 9.39,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 22,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 6210,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"SAND\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 10,\n            \"coin\": \"USDC\",\n            \"name\": \"USD Coin\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 1000000,\n            \"wmin\": 50,\n            \"withdraw\": false,\n            \"deposit\": false,\n            \"wlabel\": \"USDC\",\n            \"dfee\": 0,\n            \"wfee\": 30,\n            \"tokenratio\": 9000,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 7,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 3408,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"USDC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 10,\n            \"coin\": \"SHIB\",\n            \"name\": \"SHIBA INU\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 10000000000000000,\n            \"wmax\": 10000000000000000,\n            \"wmin\": 1660444,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"SHIB\",\n            \"dfee\": 0,\n            \"wfee\": 1245333,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 21,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 5994,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"SHIB\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 11,\n            \"coin\": \"BNB\",\n            \"name\": \"Binance Coin\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000,\n            \"wmax\": 100000,\n            \"wmin\": 0.024,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"BNB_BSC\",\n            \"dfee\": 0,\n            \"wfee\": 0.001,\n            \"tokenratio\": 4,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 9,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 1839,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"BNB\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 12,\n            \"coin\": \"MATIC\",\n            \"name\": \"Matic (Polygon)\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 1000000,\n            \"wmax\": 1000000,\n            \"wmin\": 2,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"MATIC_POLYGON\",\n            \"dfee\": 0,\n            \"wfee\": 1,\n            \"tokenratio\": 12000,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 10,\n            \"networks\": [\n                {\n                    \"network\": \"Polygon Network\",\n                    \"display\": \"Polygon Network\"\n                }\n            ],\n            \"unified_cid\": 3890,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"MATIC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 12,\n            \"coin\": \"ENJ\",\n            \"name\": \"Enjin Coin\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000000,\n            \"wmin\": 18,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ENJ\",\n            \"dfee\": 0,\n            \"wfee\": 13.71,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 23,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 2130,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ENJ\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 13,\n            \"coin\": \"AAVE\",\n            \"name\": \"AAVE\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 0.52,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"AAVE\",\n            \"dfee\": 0,\n            \"wfee\": 0.39,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 24,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 7278,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"AAVE\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 13,\n            \"coin\": \"1INCH\",\n            \"name\": \"1inch Network\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 10,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"1INCH\",\n            \"dfee\": 0,\n            \"wfee\": 80,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 18,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 8104,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"1INCH\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 13,\n            \"coin\": \"ADA\",\n            \"name\": \"Cardano\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 100000,\n            \"wmax\": 10000000,\n            \"wmin\": 15,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ADA\",\n            \"dfee\": 0,\n            \"wfee\": 1.5,\n            \"tokenratio\": 652,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 11,\n            \"networks\": [\n                {\n                    \"network\": \"Cardano\",\n                    \"display\": \"Cardano\"\n                }\n            ],\n            \"unified_cid\": 2010,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ADA\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 14,\n            \"coin\": \"ALICE\",\n            \"name\": \"MyNeighborAlice\",\n            \"active\": true,\n            \"dmin\": 2,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 4,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ALICE\",\n            \"dfee\": 0,\n            \"wfee\": 2,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 29,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 8766,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ALICE\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 14,\n            \"coin\": \"DASH\",\n            \"name\": \"Dash\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 10000,\n            \"wmax\": 10000,\n            \"wmin\": 0.008,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"DASH\",\n            \"dfee\": 0,\n            \"wfee\": 0.004,\n            \"tokenratio\": 1,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 12,\n            \"networks\": [\n                {\n                    \"network\": \"Dash\",\n                    \"display\": \"Dash\"\n                }\n            ],\n            \"unified_cid\": 131,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"DASH\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 15,\n            \"coin\": \"XLM\",\n            \"name\": \"Stellar\",\n            \"active\": true,\n            \"dmin\": 200,\n            \"dmax\": 1000000000,\n            \"wmax\": 1000000000,\n            \"wmin\": 10,\n            \"withdraw\": false,\n            \"deposit\": false,\n            \"wlabel\": \"XLM\",\n            \"dfee\": 0,\n            \"wfee\": 4,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 19,\n            \"networks\": [\n                {\n                    \"network\": \"Steller\",\n                    \"display\": \"Steller\"\n                }\n            ],\n            \"unified_cid\": 512,\n            \"tag_req\": true,\n            \"network_confirmation\": 8,\n            \"currency\": \"XLM\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 15,\n            \"coin\": \"LINK\",\n            \"name\": \"Chainlink\",\n            \"active\": true,\n            \"dmin\": 0.0005,\n            \"dmax\": 100000,\n            \"wmax\": 100,\n            \"wmin\": 3.72,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"LINK\",\n            \"dfee\": 0,\n            \"wfee\": 1.86,\n            \"tokenratio\": 160000,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 13,\n            \"networks\": [\n                {\n                    \"network\": \"Chainlink\",\n                    \"display\": \"Chainlink\"\n                }\n            ],\n            \"unified_cid\": 1975,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"LINK\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 16,\n            \"coin\": \"DOGE\",\n            \"name\": \"Doge Coin\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000,\n            \"wmax\": 100000,\n            \"wmin\": 25,\n            \"withdraw\": false,\n            \"deposit\": false,\n            \"wlabel\": \"DOGE\",\n            \"dfee\": 0,\n            \"wfee\": 4,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 14,\n            \"networks\": [\n                {\n                    \"network\": \"Doge Coin\",\n                    \"display\": \"Doge Coin\"\n                }\n            ],\n            \"unified_cid\": 74,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"DOGE\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 16,\n            \"coin\": \"DOT\",\n            \"name\": \"Polkadot\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 1.5,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"DOT\",\n            \"dfee\": 0,\n            \"wfee\": 0.86,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 20,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 6636,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"DOT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 16,\n            \"coin\": \"ETC\",\n            \"name\": \"Ethereum Classic\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000,\n            \"wmax\": 100000,\n            \"wmin\": 0.04,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ETC\",\n            \"dfee\": 0,\n            \"wfee\": 0.02,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 15,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum Classic\",\n                    \"display\": \"Ethereum Classic\"\n                }\n            ],\n            \"unified_cid\": 1321,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ETC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 18,\n            \"coin\": \"LUNA\",\n            \"name\": \"Terra Luna\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 2.3,\n            \"withdraw\": false,\n            \"deposit\": false,\n            \"wlabel\": \"LUNA\",\n            \"dfee\": 0,\n            \"wfee\": 0.2,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 30,\n            \"networks\": [\n                {\n                    \"network\": \"Terra Luna\",\n                    \"display\": \"Terra Luna\"\n                }\n            ],\n            \"unified_cid\": 1496,\n            \"tag_req\": true,\n            \"network_confirmation\": 8,\n            \"currency\": \"LUNA\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 19,\n            \"coin\": \"FTM\",\n            \"name\": \"Fantom\",\n            \"active\": true,\n            \"dmin\": 50,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 28,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"FTM_FANTOM\",\n            \"dfee\": 0,\n            \"wfee\": 14,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 25,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 3513,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"FTM\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 20,\n            \"coin\": \"LRC\",\n            \"name\": \"Loopring\",\n            \"active\": true,\n            \"dmin\": 50,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 20,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"LRC\",\n            \"dfee\": 0,\n            \"wfee\": 15,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 26,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 1934,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"LRC\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 21,\n            \"coin\": \"GALA\",\n            \"name\": \"Gala\",\n            \"active\": true,\n            \"dmin\": 200,\n            \"dmax\": 1000000000,\n            \"wmax\": 1000000,\n            \"wmin\": 184,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"GALA2\",\n            \"dfee\": 0,\n            \"wfee\": 125,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 27,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 7080,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"GALA\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 22,\n            \"coin\": \"AXS\",\n            \"name\": \"Axie Infinity\",\n            \"active\": true,\n            \"dmin\": 0.5,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 0.5,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"AXS\",\n            \"dfee\": 0,\n            \"wfee\": 0.35,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 28,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 6783,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"AXS\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 23,\n            \"coin\": \"SOL\",\n            \"name\": \"SOLANA\",\n            \"active\": true,\n            \"dmin\": 0.01,\n            \"dmax\": 1000000,\n            \"wmax\": 100000,\n            \"wmin\": 0.5,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"SOL\",\n            \"dfee\": 0,\n            \"wfee\": 0.1,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 32,\n            \"networks\": [\n                {\n                    \"network\": \"Solana\",\n                    \"display\": \"Solana\"\n                }\n            ],\n            \"unified_cid\": 5426,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"SOL\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 24,\n            \"coin\": \"POWR\",\n            \"name\": \"Powerledger\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 100,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"POWR\",\n            \"dfee\": 0,\n            \"wfee\": 82,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 33,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 2132,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"POWR\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 25,\n            \"coin\": \"NEAR\",\n            \"name\": \"NEAR Protocol\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 0.2,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"NEAR_BSC\",\n            \"dfee\": 0,\n            \"wfee\": 0.02,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 34,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 6535,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"NEAR\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 26,\n            \"coin\": \"AVAX\",\n            \"name\": \"Avalanche\",\n            \"active\": true,\n            \"dmin\": 0.2,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 0.8,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"AVAX\",\n            \"dfee\": 0,\n            \"wfee\": 0.2,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 35,\n            \"networks\": [\n                {\n                    \"network\": \"Avalanche\",\n                    \"display\": \"Avalanche\"\n                }\n            ],\n            \"unified_cid\": 5805,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"AVAX\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 27,\n            \"coin\": \"ALGO\",\n            \"name\": \"Algorand\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 1000000,\n            \"wmax\": 100000,\n            \"wmin\": 20,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ALGO\",\n            \"dfee\": 0,\n            \"wfee\": 0.02,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 37,\n            \"networks\": [\n                {\n                    \"network\": \"Algorand\",\n                    \"display\": \"Algorand\"\n                }\n            ],\n            \"unified_cid\": 4030,\n            \"tag_req\": true,\n            \"network_confirmation\": 8,\n            \"currency\": \"ALGO\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 28,\n            \"coin\": \"MANA\",\n            \"name\": \"Decentraland\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 40,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"MANA\",\n            \"dfee\": 0,\n            \"wfee\": 20,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 38,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 1966,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"MANA\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 29,\n            \"coin\": \"HBAR\",\n            \"name\": \"Hedera Hashgraph\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 10000000000,\n            \"wmax\": 10000000,\n            \"wmin\": 4,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"HBAR\",\n            \"dfee\": 0,\n            \"wfee\": 2,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 39,\n            \"networks\": [\n                {\n                    \"network\": \"Hedera Hashgraph\",\n                    \"display\": \"Hedera Hashgraph\"\n                }\n            ],\n            \"unified_cid\": 4642,\n            \"tag_req\": true,\n            \"network_confirmation\": 8,\n            \"currency\": \"HBAR\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 30,\n            \"coin\": \"GHST\",\n            \"name\": \"Aavegotchi\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 50.01,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"GHST\",\n            \"dfee\": 0,\n            \"wfee\": 40.5,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 40,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 7046,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"GHST\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 31,\n            \"coin\": \"ATOM\",\n            \"name\": \"Cosmos\",\n            \"active\": true,\n            \"dmin\": 0.01,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 1,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ATOM\",\n            \"dfee\": 0,\n            \"wfee\": 0.024,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 36,\n            \"networks\": [\n                {\n                    \"network\": \"Cosmos\",\n                    \"display\": \"Cosmos\"\n                }\n            ],\n            \"unified_cid\": 3794,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ATOM\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 32,\n            \"coin\": \"GRT\",\n            \"name\": \"The Graph\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 100000000,\n            \"wmax\": 10000000,\n            \"wmin\": 170,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"GRT\",\n            \"dfee\": 0,\n            \"wfee\": 90,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 41,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 5711,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"GRT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 33,\n            \"coin\": \"MKR\",\n            \"name\": \"Maker\",\n            \"active\": true,\n            \"dmin\": 0.01,\n            \"dmax\": 100000,\n            \"wmax\": 100000,\n            \"wmin\": 0.05,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"MKR\",\n            \"dfee\": 0,\n            \"wfee\": 0.024,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 42,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 1518,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"MKR\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 34,\n            \"coin\": \"ONE\",\n            \"name\": \"Harmony(BSC Chain) \",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 10000000,\n            \"wmax\": 10000000,\n            \"wmin\": 16,\n            \"withdraw\": false,\n            \"deposit\": true,\n            \"wlabel\": \"ONE_BSC\",\n            \"dfee\": 0,\n            \"wfee\": 0.002,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 43,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 3945,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ONE\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 35,\n            \"coin\": \"FTT\",\n            \"name\": \"FTX Token\",\n            \"active\": true,\n            \"dmin\": 0.1,\n            \"dmax\": 10000000,\n            \"wmax\": 10000000,\n            \"wmin\": 2,\n            \"withdraw\": true,\n            \"deposit\": false,\n            \"wlabel\": \"FTT\",\n            \"dfee\": 0,\n            \"wfee\": 1.3,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 44,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 4195,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"FTT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 36,\n            \"coin\": \"HOT\",\n            \"name\": \"Holo\",\n            \"active\": true,\n            \"dmin\": 1000,\n            \"dmax\": 1000000000000,\n            \"wmax\": 1000000000000,\n            \"wmin\": 15000,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"HOT1\",\n            \"dfee\": 0,\n            \"wfee\": 12000,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 45,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 2682,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"HOT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 37,\n            \"coin\": \"ATOZ\",\n            \"name\": \"Race Kingdom(BSC Chain)\",\n            \"active\": true,\n            \"dmin\": 100,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000000,\n            \"wmin\": 100,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"ATOZ_BSC_KUTR\",\n            \"dfee\": 0,\n            \"wfee\": 80,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 46,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 20941,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"ATOZ\"\n        },\n        {\n            \"precision\": 10,\n            \"order\": 47,\n            \"coin\": \"VOLT\",\n            \"name\": \"Volt Inu\",\n            \"active\": true,\n            \"dmin\": 10000000,\n            \"dmax\": 10000000000000,\n            \"wmax\": 10000000000000,\n            \"wmin\": 10000000,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"VOLT_ETH_WJCL\",\n            \"dfee\": 0,\n            \"wfee\": 5000000,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 48,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                },\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 19650,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"VOLT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 48,\n            \"coin\": \"LOP\",\n            \"name\": \"League Of Pharaohs(BSC Chain)\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 10000000,\n            \"wmax\": 300000,\n            \"wmin\": 150,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"LOP_BSC_TZVJ\",\n            \"dfee\": 0,\n            \"wfee\": 150,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 49,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": null,\n            \"tag_req\": false,\n            \"network_confirmation\": 6,\n            \"currency\": \"LOP\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 50,\n            \"coin\": \"XACT\",\n            \"name\": \"XACT TOKEN(Polygon)\",\n            \"active\": true,\n            \"dmin\": 10,\n            \"dmax\": 100000000,\n            \"wmax\": 1000000000,\n            \"wmin\": 30,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"XACT_POLYGON_QLGN\",\n            \"dfee\": 0,\n            \"wfee\": 30,\n            \"tokenratio\": 24,\n            \"eth_token\": false,\n            \"testnet\": false,\n            \"id\": 51,\n            \"networks\": [\n                {\n                    \"network\": \"Polygon Network\",\n                    \"display\": \"Polygon Network\"\n                }\n            ],\n            \"unified_cid\": null,\n            \"tag_req\": false,\n            \"network_confirmation\": 6,\n            \"currency\": \"XACT\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 51,\n            \"coin\": \"FLOKI\",\n            \"name\": \"FLOKI\",\n            \"active\": true,\n            \"dmin\": 100000,\n            \"dmax\": 100000000000000,\n            \"wmax\": 1000000000,\n            \"wmin\": 3000000,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"FLOKI_ETH\",\n            \"dfee\": 0,\n            \"wfee\": 600000,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 52,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                },\n                {\n                    \"network\": \"Polygon Network\",\n                    \"display\": \"Polygon Network\"\n                }\n            ],\n            \"unified_cid\": 10804,\n            \"tag_req\": false,\n            \"network_confirmation\": 6,\n            \"currency\": \"FLOKI\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 52,\n            \"coin\": \"GALAV1\",\n            \"name\": \"Gala V1\",\n            \"active\": true,\n            \"dmin\": 200,\n            \"dmax\": 1000000000,\n            \"wmax\": 100000,\n            \"wmin\": 184,\n            \"withdraw\": false,\n            \"deposit\": false,\n            \"wlabel\": \"GALA\",\n            \"dfee\": 0,\n            \"wfee\": 125,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 53,\n            \"networks\": [\n                {\n                    \"network\": \"Ethereum\",\n                    \"display\": \"Ethereum\"\n                }\n            ],\n            \"unified_cid\": 0,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"GALAV1\"\n        },\n        {\n            \"precision\": 6,\n            \"order\": 53,\n            \"coin\": \"CCV2\",\n            \"name\": \"Celebrity Coin\",\n            \"active\": true,\n            \"dmin\": 1,\n            \"dmax\": 1000000000,\n            \"wmax\": 10000000,\n            \"wmin\": 0.1,\n            \"withdraw\": true,\n            \"deposit\": true,\n            \"wlabel\": \"CCV2_BSC_PTGP\",\n            \"dfee\": 0,\n            \"wfee\": 0.1,\n            \"tokenratio\": 24,\n            \"eth_token\": true,\n            \"testnet\": false,\n            \"id\": 54,\n            \"networks\": [\n                {\n                    \"network\": \"Binance Smart Chain\",\n                    \"display\": \"Binance Smart Chain\"\n                }\n            ],\n            \"unified_cid\": 0,\n            \"tag_req\": false,\n            \"network_confirmation\": 8,\n            \"currency\": \"CCV2\"\n        }\n    ],\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:46:29.451Z\"\n}"}],"_postman_id":"9570087c-f1a3-4841-9cee-5f7c1f7dc14a"},{"name":"Get Summary for a specific symbol","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"74d3cc34-e119-40ee-8591-738e404fa323"}}],"id":"da84234a-b9cc-469e-affa-3ff742be48f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/summary?symbol=BTCUSDT","description":"<p>This API will be used to get summary of a specific symbol</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","summary"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"b9b47bc3-6b3c-404f-a65b-23eb50fa223b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/summary?symbol=BCHUSDT","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","summary"],"query":[{"key":"symbol","value":"BCHUSDT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"trading_pairs\": \"BCH_USDT\",\n        \"base_currency\": \"BCH\",\n        \"quote_currency\": \"USDT\",\n        \"last_price\": \"109.3\",\n        \"lowest_ask\": \"108.6\",\n        \"highest_bid\": \"109.7\",\n        \"base_volume\": \"2802.3970000000004\",\n        \"quote_volume\": \"308366.25899999996\",\n        \"price_change_percent_24h\": \"-4.038630377524152\",\n        \"highest_price_24h\": \"114\",\n        \"lowest_price_24h\": \"107.2\"\n    }\n]"}],"_postman_id":"da84234a-b9cc-469e-affa-3ff742be48f7"},{"name":"Get SPOT Pairs detail of a specific Symbol","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"9ff362f4-6220-46ee-920e-aa28030b1365"}}],"id":"ca6411d0-7f20-435c-8be3-6a30fec92bdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/pairs?symbol=BTCUSDT","description":"<p>This API will be used to get SPOT pairs for a specific symbol</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","pairs"],"host":["api","bitdelta","com"],"query":[{"key":"symbol","value":"BTCUSDT"}],"variable":[]}},"response":[{"id":"795497b7-8dde-47fb-b85d-fe2ad4bee36e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":{"raw":"https://api.bitdelta.com/open/api/v1/pairs?symbol=BTCUSDT","protocol":"https","host":["api","bitdelta","com"],"path":["open","api","v1","pairs"],"query":[{"key":"symbol","value":"BTCUSDT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        {\n            \"symbol\": \"BTCUSDT\",\n            \"order\": 2,\n            \"currency1\": \"BTC\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"usdt\",\n                \" btc\"\n            ],\n            \"mfee\": 0.15,\n            \"tfee\": 0.15,\n            \"group_precision\": 4,\n            \"liq\": 0,\n            \"bamount\": 1,\n            \"open\": 0.2481,\n            \"high\": 0.255,\n            \"low\": 0.2457,\n            \"last\": 0.248,\n            \"highest_bid\": 0.2488,\n            \"lowest_ask\": 0.2469,\n            \"pricing\": [\n                0.248,\n                0.2482,\n                0.2483,\n                0.2488,\n                0.2481,\n                0.2488,\n                0.2471,\n                0.2481,\n                0.2481,\n                0.248,\n                0.2474,\n                0.2479,\n                0.2481,\n                0.2481,\n                0.2501,\n                0.2494,\n                0.2504,\n                0.2537,\n                0.254,\n                0.2533,\n                0.2543,\n                0.2544,\n                0.2546,\n                0.2549,\n                0.255\n            ],\n            \"categories\": [],\n            \"keywords\": [\n                \"BTC\"\n            ],\n            \"change\": -2.7450980392156885,\n            \"volume\": 11050204.1,\n            \"quote_volume\": 2765734.27561\n        }\n    ],\n    \"message\": \"Request successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2023-06-06T07:47:03.036Z\"\n}"}],"_postman_id":"ca6411d0-7f20-435c-8be3-6a30fec92bdd"},{"name":"Get SPOT Pairs List","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"fe0d267b-85f6-407c-a217-c2e8ee48b0a1"}}],"id":"f704f5ee-19b0-49f2-ae1c-1362a9ad843f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.bitdelta.com/open/api/v1/pairs","description":"<p>This API will be used to get SPOT pairs</p>\n","urlObject":{"protocol":"https","path":["open","api","v1","pairs"],"host":["api","bitdelta","com"],"query":[],"variable":[]}},"response":[{"id":"9eed3301-daa9-43cc-940a-7060b7f5336c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Accept-Language","value":"en","type":"text"}],"url":"https://api.bitdelta.com/open/api/v1/pairs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"data\": [\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"BTCUSDT\",\n            \"order\": 1,\n            \"currency1\": \"BTC\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"btc\",\n                \"usdt\",\n                \"major\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 2,\n            \"liq\": 1,\n            \"bamount\": 5,\n            \"open\": 20624.43,\n            \"high\": 20844.96,\n            \"low\": 19868.6,\n            \"last\": 20312.88,\n            \"volume\": 7513.949748,\n            \"quote_volume\": 153156551.11882222,\n            \"highest_bid\": 20829.2,\n            \"lowest_ask\": 19868.6,\n            \"pricing\": [\n                20312.88,\n                20197.79,\n                20213.55,\n                20271.24,\n                20537.26,\n                20421.2,\n                20568.88,\n                20513.29,\n                20484.76,\n                20827.13,\n                20795.09,\n                20873.14,\n                20964.16,\n                20799.79,\n                21205.72,\n                21133.69,\n                21508.52,\n                21499.15,\n                21490.84,\n                21727.42,\n                21211.73,\n                21067.24,\n                21188.81,\n                21098.17\n            ],\n            \"change\": -1.5105872016826647\n        },\n        {\n            \"categories\": [\n                \"NFT\",\n                \"Gaming\"\n            ],\n            \"symbol\": \"BCHUSDT\",\n            \"order\": 2,\n            \"currency1\": \"BCH\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"bch\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 1,\n            \"liq\": 1,\n            \"bamount\": 3,\n            \"open\": 118.9,\n            \"high\": 120.2,\n            \"low\": 111.9,\n            \"last\": 114.5,\n            \"volume\": 92423.1872,\n            \"quote_volume\": 10723575.59438,\n            \"highest_bid\": 119.9,\n            \"lowest_ask\": 111.9,\n            \"pricing\": [\n                114.5,\n                113.7,\n                114.3,\n                116.7,\n                116.5,\n                115.2,\n                116.8,\n                116.6,\n                118.7,\n                120.1,\n                120.3,\n                119.4,\n                119.3,\n                118.2,\n                120.1,\n                120.8,\n                122.2,\n                120.4,\n                120.4,\n                120.4,\n                116.9,\n                116.4,\n                120.7,\n                120.3\n            ],\n            \"change\": -3.700588730025231\n        },\n        {\n            \"categories\": [\n                \"NFT\",\n                \"Gaming\"\n            ],\n            \"symbol\": \"ETHUSDT\",\n            \"order\": 3,\n            \"currency1\": \"ETH\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"eth\",\n                \"major\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 2,\n            \"liq\": 1,\n            \"bamount\": 4,\n            \"open\": 1131.38,\n            \"high\": 1133.37,\n            \"low\": 1062.15,\n            \"last\": 1074.99,\n            \"volume\": 95424.70394,\n            \"quote_volume\": 104669256.6771962,\n            \"highest_bid\": 1131.77,\n            \"lowest_ask\": 1062.74,\n            \"pricing\": [\n                1074.99,\n                1081.04,\n                1083.71,\n                1098.79,\n                1093.95,\n                1094.9,\n                1107.98,\n                1107.44,\n                1112.76,\n                1120.06,\n                1143.73,\n                1124.79,\n                1128.37,\n                1130.28,\n                1149.73,\n                1157.61,\n                1161.67,\n                1173.98,\n                1189.01,\n                1181.29,\n                1142.32,\n                1135.76,\n                1155.95,\n                1163.4\n            ],\n            \"change\": -4.984178613728367\n        },\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"XRPUSDT\",\n            \"order\": 5,\n            \"currency1\": \"XRP\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"xrp\",\n                \"major\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 4,\n            \"liq\": 1,\n            \"bamount\": 0,\n            \"open\": 0.3276,\n            \"high\": 0.3313,\n            \"low\": 0.3175,\n            \"last\": 0.3237,\n            \"volume\": 29689721.4,\n            \"quote_volume\": 9604318.30952,\n            \"highest_bid\": 0.3311,\n            \"lowest_ask\": 0.3176,\n            \"pricing\": [\n                0.3237,\n                0.3212,\n                0.3229,\n                0.3257,\n                0.3257,\n                0.3199,\n                0.3217,\n                0.3241,\n                0.325,\n                0.331,\n                0.3335,\n                0.3273,\n                0.3257,\n                0.3297,\n                0.3306,\n                0.3336,\n                0.3347,\n                0.3343,\n                0.3374,\n                0.337,\n                0.3269,\n                0.3282,\n                0.3334,\n                0.3297\n            ],\n            \"change\": -1.1904761904761905\n        },\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"LTCUSDT\",\n            \"order\": 6,\n            \"currency1\": \"LTC\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"ltc\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 1,\n            \"liq\": 1,\n            \"bamount\": 3,\n            \"open\": 53.3,\n            \"high\": 53.8,\n            \"low\": 50.1,\n            \"last\": 51.4,\n            \"volume\": 257502.9746,\n            \"quote_volume\": 13299782.27488,\n            \"highest_bid\": 53.6,\n            \"lowest_ask\": 50.1,\n            \"pricing\": [\n                51.4,\n                51,\n                51.3,\n                51.9,\n                52.2,\n                51.5,\n                52.1,\n                52.1,\n                52.2,\n                53.9,\n                53.8,\n                53.6,\n                53.6,\n                53.2,\n                53.3,\n                54,\n                54.3,\n                54.3,\n                55.6,\n                54.5,\n                53.3,\n                52.7,\n                53.8,\n                53.3\n            ],\n            \"change\": -3.5647279549718576\n        },\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"SHIBUSDT\",\n            \"order\": 6,\n            \"currency1\": \"SHIB\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"shib\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 8,\n            \"liq\": 1,\n            \"bamount\": 0,\n            \"open\": 0.0000106,\n            \"high\": 0.00001078,\n            \"low\": 0.00000933,\n            \"last\": 0.0000094,\n            \"volume\": 1216443847294.2,\n            \"quote_volume\": 11894956.59537378,\n            \"highest_bid\": 0.00001078,\n            \"lowest_ask\": 0.00000934,\n            \"pricing\": [\n                0.0000094,\n                0.0000094,\n                0.0000096,\n                0.0000098,\n                0.00000977,\n                0.00000966,\n                0.00000989,\n                0.00000971,\n                0.0000102,\n                0.0000106,\n                0.00001068,\n                0.00001052,\n                0.00001055,\n                0.0000111,\n                0.00001101,\n                0.00001031,\n                0.00001033,\n                0.00001045,\n                0.00001047,\n                0.00001049,\n                0.00000951,\n                0.0000091,\n                0.00000939,\n                0.00000862\n            ],\n            \"change\": -11.320754716981131\n        },\n        {\n            \"categories\": [\n                \"NFT\",\n                \"Gaming\"\n            ],\n            \"symbol\": \"USDCUSDT\",\n            \"order\": 7,\n            \"currency1\": \"USDC\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"usdc\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 4,\n            \"liq\": 1,\n            \"bamount\": 0,\n            \"open\": 1.0059,\n            \"high\": 1.016,\n            \"low\": 0.9762,\n            \"last\": 0.996,\n            \"volume\": 8892003.2,\n            \"quote_volume\": 8908197.15836,\n            \"highest_bid\": 1.016,\n            \"lowest_ask\": 0.9762,\n            \"pricing\": [\n                0.996,\n                1.0059,\n                1.0059,\n                0.996,\n                1.0059,\n                1.0062,\n                0.9961,\n                1.0059,\n                0.9961,\n                0.996,\n                0.9961,\n                0.9961,\n                0.996,\n                0.996,\n                1.0059,\n                1.0059,\n                0.996,\n                1.0061,\n                1.0059,\n                1.0059,\n                1.006,\n                1.0059,\n                0.9961,\n                0.996\n            ],\n            \"change\": -0.9841932597673725\n        },\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"UNIUSDT\",\n            \"order\": 8,\n            \"currency1\": \"UNI\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"uni\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 2,\n            \"liq\": 1,\n            \"bamount\": 2,\n            \"open\": 4.75,\n            \"high\": 4.84,\n            \"low\": 4.53,\n            \"last\": 4.6,\n            \"volume\": 1942952.516,\n            \"quote_volume\": 9119960.8369,\n            \"highest_bid\": 4.83,\n            \"lowest_ask\": 4.55,\n            \"pricing\": [\n                4.6,\n                4.56,\n                4.7,\n                4.72,\n                4.77,\n                4.74,\n                4.63,\n                4.61,\n                4.72,\n                4.8,\n                4.85,\n                4.78,\n                4.75,\n                4.79,\n                4.94,\n                4.98,\n                4.93,\n                4.98,\n                4.97,\n                4.65,\n                4.47,\n                4.38,\n                4.59,\n                4.52\n            ],\n            \"change\": -3.1578947368421053\n        },\n        {\n            \"categories\": [\n                \"NFT\"\n            ],\n            \"symbol\": \"ALICEUSDT\",\n            \"order\": 9,\n            \"currency1\": \"ALICE\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"alice\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 2,\n            \"liq\": 1,\n            \"bamount\": 1,\n            \"open\": 2.3,\n            \"high\": 2.34,\n            \"low\": 2.1,\n            \"last\": 2.16,\n            \"volume\": 5643872,\n            \"quote_volume\": 12448217.8132,\n            \"highest_bid\": 2.33,\n            \"lowest_ask\": 2.11,\n            \"pricing\": [\n                2.16,\n                2.17,\n                2.2,\n                2.22,\n                2.23,\n                2.2,\n                2.19,\n                2.23,\n                2.27,\n                2.3,\n                2.36,\n                2.31,\n                2.33,\n                2.35,\n                2.38,\n                2.39,\n                2.41,\n                2.39,\n                2.46,\n                2.41,\n                2.39,\n                2.37,\n                2.41,\n                2.41\n            ],\n            \"change\": -6.086956521739131\n        },\n        {\n            \"categories\": [\n                \"NFT\",\n                \"Gaming\"\n            ],\n            \"symbol\": \"LINKUSDT\",\n            \"order\": 10,\n            \"currency1\": \"LINK\",\n            \"currency2\": \"USDT\",\n            \"status\": \"trading\",\n            \"tags\": [\n                \"link\",\n                \"usdt\",\n                \"stable\"\n            ],\n            \"mfee\": 0.1,\n            \"tfee\": 0.1,\n            \"group_precision\": 2,\n            \"liq\": 1,\n            \"bamount\": 2,\n            \"open\": 6.87,\n            \"high\": 6.98,\n            \"low\": 6.52,\n            \"last\": 6.74,\n            \"volume\": 1366976.112,\n            \"quote_volume\": 9199414.1425,\n            \"highest_bid\": 6.96,\n            \"lowest_ask\": 6.53,\n            \"pricing\": [\n                6.74,\n                6.67,\n                6.69,\n                6.67,\n                6.71,\n                6.68,\n                6.68,\n                6.66,\n                6.85,\n                6.89,\n                6.92,\n                6.93,\n                6.93,\n                6.83,\n                7.06,\n                7.24,\n                7.3,\n                7.37,\n                7.43,\n                7.46,\n                7.29,\n                7.26,\n                7.44,\n                7.42\n            ],\n            \"change\": -1.8922852983988354\n        }\n    ],\n    \"message\": \"Request Successfully completed\",\n    \"statusText\": \"SUCCESS\",\n    \"timestamp\": \"2022-06-22T10:33:28.531Z\"\n}"}],"_postman_id":"f704f5ee-19b0-49f2-ae1c-1362a9ad843f"}],"id":"44ad93e7-896b-428f-9574-7b3b8967750b","description":"<p>Market Data at your fingertips with Bitdelta API and Websocket Services</p>\n","_postman_id":"44ad93e7-896b-428f-9574-7b3b8967750b"},{"name":"Web socket","item":[],"id":"f3c3d2e4-50b2-4afe-835b-6a0153462915","description":"<h2 id=\"socket-implementation\"><strong>Socket Implementation:</strong></h2>\n<p><strong>Sockets URLs</strong></p>\n<p><strong><code>wss://api.bitdelta.com/</code></strong> <strong>- For normal socket connection</strong></p>\n<p><strong><code>wss://api.bitdelta.com/price_change</code></strong> <strong>- for getting price change update</strong></p>\n<ol>\n<li><p><strong>Event Name: orderbook_limited - For geting orderbook of a pair****Room: Pairname (eg. - BTCUSDT/ETHUSDT)</strong>_***Note: First you have to join the room, then listen to the event, then you will get the response*</p>\n</li>\n<li><p><b>Response<br /><br /></b>**{\"bids\":[[29277.08,0.05512],[29276.23,1.24553],[29273.15,1.31641],[29272.51,1.34201],[29272.41,1.33622],[29269.83,1.37553],[29269.77,1.44787],[29265.37,0.02757],[29258.9,0.08457],[29258.68,1.22087],[29256.44,1.45882],[29255.72,0.06527],[29254.69,1.55572],[29252.26,1.55433],[29251.33,1.61504],[29250.22,1.24429],[29248.23,1.31501],[29245.73,1.29681],[29245.49,1.3606],[29243.39,0.5031],[29243.22,1.63349],[29243.18,0.82293],[29243.03,0.40185],[29242.72,0.3054],[29241.93,0.78282],[29241.74,0.88522],[29241.65,0.2531],[29241.62,0.1457],[29240.78,0.51634],[29240.56,0.66218],[29240.48,0.32608],[29240.33,2.85469],[29239.66,0.39039],[29239.39,0.23074],[29238.22,0.59063]],\"asks\":[[29282.15,0.79391],[29285.34,1.04239],[29289.69,1.08567],[29291.21,0.00877],[29291.48,1.11689],[29292.03,0.98911],[29293.07,1.17076],[29293.98,1.03108],[29294.61,0.01733],[29295.1,1.20868],[29295.73,1.07709],[29297.63,1.22001],[29301.96,1.12738],[29302.14,1.27409],[29303.33,1.13984],[29305.92,1.18518],[29306.06,1.29943],[29306.54,0.08968],[29308.89,1.3906],[29309.7,0.88834],[29309.77,0.60157],[29309.98,1.36846],[29310.09,0.88277],[29310.71,0.52492],[29310.82,0.08121],[29311.06,0.69486],[29311.91,0.16868],[29312.14,0.70016],[29312.39,0.20157],[29312.76,0.78139],[29313.68,1.45975],[29313.83,0.59632],[29313.97,1.327],[29315.02,1.4433],[29315.33,0.44868]],\"pair\":\"BTCUSDT\"}</p>\n</li>\n<li><p>Event Name: <strong>prices - For getting price changes happening in pair</strong><br /> For public: You can directly listen to the event and get the response<b><br /><br />Response:<br /><br /></b><code>[[\"USDCUSDT\",1,30.0771,0,67454.67899,66112.93511598],[\"VOLTUSDT\",0.00000121,271490530,10,75061502599,89838.56446095],[\"MKRUSDT\",831,0.1167,8.34419817470665,331101.0768,267489381.31123313],[\"LTCUSDT\",63.5,1.136,-7.0167886353852795,478.4779999999999,32465.451569999997],[\"UNIUSDT\",5.6,2.04,-0.3558718861210047,97167.18037,553068.7653017999],[\"SHIBUSDT\",0.0000102,343792,5.80912863070541,275908029268,2774342.0373127502],[\"XRPUSDT\",0.4747,22,-3.3197556008146605,11569174.175920002,5558205.20189731],[\"BTCUSDT\",21543.99,0.00083,0,55.80940999999999,1201431.2429704003],[\"ALICEUSDT\",0.98,19.1853,-2.0000000000000018,80510.10152,80649.26298623],[\"LINKUSDT\",7.0397,117.6,4.137573964497043,2458828.5177999996,17012643.180869],[\"BCHUSDT\",103.8,10,3.5630498533724304,7197.6155,735625.175135],[\"ETHUSDT\",1225,0.0798,-4.623316601538024,1720.2280000000003,2197409.3781335196],[\"ATOZUSDT\",0.006969,14492.7,-30.31,1181952.3,10.4535]] s</code></p>\n</li>\n<li><p>Event Name: <strong>trades - For gettin trades of a pair</strong><br /> Room: Pairname (eg. - BTCUSDT/ETHUSDT)<br /> <em>*<strong><strong>Note: First you have to join the room, then listen to the event, then you will get the response</strong></strong>*</em></p>\n</li>\n</ol>\n","_postman_id":"f3c3d2e4-50b2-4afe-835b-6a0153462915"}]}