{"info":{"_postman_id":"b99fe274-e7be-4d65-92d1-9d451ea6603d","name":"BLOX-PAYMENTS-API","description":"<html><head></head><body><p>API to use Blox Payments API</p>\n<p>Components to the integration to the Bloxcross API</p>\n<ol>\n<li><p>REST API for Requests</p>\n</li>\n<li><p>Socket API for Streaming Data &amp; Alerts</p>\n</li>\n</ol>\n<p><strong>REST API</strong></p>\n<p>• For requests which require an immediate response<br>• Synchronous Execution<br>• Success or Failure response with Data</p>\n<p><strong>Socket API:</strong></p>\n<ul>\n<li><p>Used to subscribe to streaming Data</p>\n</li>\n<li><p>Events are pushed to the Client socket</p>\n</li>\n<li><p>Two base channels: market data &amp; alerts</p>\n</li>\n</ul>\n<p><strong>Client Journey</strong></p>\n<p>Clients can Register with only basic information:</p>\n<ul>\n<li><p>Fname, lname, email, phone, pwd, domicile, language</p>\n</li>\n<li><p>Account is created but <code>PENDING_VERIFICATION</code></p>\n</li>\n<li><p>Main Portfolio is created but in <code>HOLD</code> state</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/c28c82e7-6327-4dce-a937-297671d2954c/Q2xpZW50X0pvdXJuZXkucG5n\">\n\n<p>Client must pass the following checks to be enables to do<br>any monetary transactions – deposit/withdraw/buy/sell:</p>\n<ol>\n<li><p>ID Verification</p>\n</li>\n<li><p>Verify Phone</p>\n</li>\n<li><p>Verify Email</p>\n</li>\n<li><p>Have their ID Verified, validated &amp; do a liveness teat to make sure it is a human<br> Pass KYC /AML</p>\n</li>\n</ol>\n<img src=\"https://content.pstmn.io/05232bb6-6962-4947-a62a-cbb66412d635/VXNlcl9SZWdpc3RyYXRpb24ucG5n\">\n\n<img src=\"https://content.pstmn.io/2cd77427-ebb6-4b49-adaf-ac845a5ffe70/VXNlcl9sb2dpbi5wbmc=\">\n\n<p><strong>Rest API Considerations</strong></p>\n<ul>\n<li><p>Request Data in JSON Format</p>\n</li>\n<li><p>Reply Data in JSON Format</p>\n</li>\n<li><p>All data via HTTPS</p>\n</li>\n<li><p>GET requests to return Data</p>\n</li>\n<li><p>POST if any data needs to be sent to backend</p>\n</li>\n<li><p>A client can have multiple sessions open at the same time</p>\n</li>\n<li><p>If a client has more than one session open, then all sessions will receive notifications (socket)</p>\n</li>\n</ul>\n<p><strong>Socket Interface</strong></p>\n<p>• Use the same token generated by login to connect<br>• Session are verified to be valid<br>• Sessions are verified for token expiration or blocked clients<br>• Session are subscription based<br>• Two separate Channels: Market-data &amp; Alerts<br>• Market-Data is high volume low latency perishable data with no guaranteed delivery<br>• Alerts channel is ordered (FIFO) guaranteed delivery to all active sessions<br>• Market Data channel data pushes based on subscription commands<br>• Alerts channel is single session created by default, but all sessions get the data</p>\n<p><strong>URLS</strong></p>\n<ul>\n<li><p>Development URL is: <a href=\"https://api.bloxcross-dev.comWebsocket\">https://api.bloxcross-dev.com</a></p>\n</li>\n<li><p>Websocket Alerts Endpoint: wss://api.bloxcross-dev.com/subscribe</p>\n</li>\n<li><p>Websocket market Data Endpoint: wss://api.bloxcross-dev.com/tickerplant</p>\n</li>\n</ul>\n<h1 id=\"websockets\"><strong>WEBSOCKETS</strong></h1>\n<h2 id=\"alerts\"><strong>ALERTS</strong></h2>\n<p>The alerts arrive via push over the Alerts websocket connection. All messages have the same structure:</p>\n<ol>\n<li><p>A header with information about the Message</p>\n</li>\n<li><p>The Data for the message</p>\n</li>\n</ol>\n<p>Here is a Alert example in Java:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"header\": {\n    \"msg_type\": \"ORDER_NEW\",\n    \"level\": \"ALERT\",\n    \"notes\": \"\"\n  },\n  \"data\": {\n    \"oid\": \"eb94cd38-ad12-417d-befe-2a62c3f2bfda\",\n    \"reserve_id\": 33370227094893060,\n    \"user_oid\": \"880062851073121\",\n    \"client_id\": \"3619f00d-32d4-4983-92f8-ebfd3a68898b\",\n    \"symbol\": \"ETH-USD\",\n    \"side\": \"SELL\",\n    \"amount\": 1,\n    \"quantity\": 0,\n    \"order_state\": \"NEW\",\n    \"order_action\": \"NEW\",\n    \"type\": \"MARKET_BY_AMOUNT\",\n    \"price\": 0,\n    \"time_in_force\": null,\n    \"valid_until\": null,\n    \"stop_type\": null,\n    \"data\": null,\n    \"created_on\": \"2023-07-21T20:14:16.046382948\",\n    \"portfolio_id\": \"5e85cab3-2745-43cb-9358-1fd2e81acd8c\",\n    \"executed_quantity\": 0,\n    \"fee_rate\": 100,\n    \"spread\": 100,\n    \"fee\": null,\n    \"held_qty\": 0.0005,\n    \"reserve_currency\": \"ETH\"\n  }\n}\n\n</code></pre><p>The header contains two key pieces of data:</p>\n<ol>\n<li><p><strong>msg_type</strong>: the type of message</p>\n</li>\n<li><p><strong>level</strong>: the importance of the message</p>\n</li>\n</ol>\n<p>msg_type can be one of:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>ORDER_NEW,\nORDER_CANCEL,\nORDER_REJECTED,\nORDER_UPDATE,\nORDER_ERROR,\nEXECUTION,\nTRACKING_EXECUTION,\nDEPOSIT_INITIATED,\nDEPOSIT,\nDEPOSIT_REVERSED,\nWITHDRAW_INITIATED,\nWITHDRAW,\nWITHDRAW_REVERSED,\nINFO,\nROBBIE,\nKYC,\nAML,\nDISPLAY_TO_USER\n\n</code></pre><p>level can be one of:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>INFO,\nWARN,\nALERT\n\n</code></pre><p>Here is an example in Java to connect to Alerts Websocket:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import org.java_websocket.client.WebSocketClient;\nimport org.java_websocket.drafts.Draft;\nimport org.java_websocket.handshake.ServerHandshake;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport java.io.IOException;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.security.KeyManagementException;\nimport java.security.NoSuchAlgorithmException;\nimport java.util.Map;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.ScheduledExecutorService;\nimport static java.lang.System.exit;\npublic class TestClient\n        extends WebSocketClient {\n    private static Logger log = LoggerFactory.getLogger(TestClient.class);\n    private final ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1);\n    public TestClient(\n            URI serverUri,\n            Draft draft\n    ) {\n        super(\n                serverUri,\n                draft\n        );\n    }\n    public TestClient(URI serverURI) {\n        super(serverURI);\n    }\n    public TestClient(\n            URI serverUri,\n            Map httpHeaders\n    ) {\n        super(\n                serverUri,\n                httpHeaders\n        );\n    }\n    public static void main(String[] args)\n            throws\n            URISyntaxException,\n            IOException,\n            NoSuchAlgorithmException,\n            KeyManagementException,\n            InterruptedException {\n        String host = \"api.bloxcross-dev.com\";;\n        log.info(\"&gt;&gt;&gt; Connecting to: [wss://\" + host + \"/subscribe]\");\n        TestClient c = new TestClient(new URI(\n                \"wss://\" + host + \"/subscribe\"));\n        c.connect();\n        c.setConnectionLostTimeout(30);\n        Thread.sleep(5000);\n        c.send(\"{\\\"token\\\": \\\"yJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJtepdlSdXN0NjhAZ21haWwuY29tIiwibGFzdF9sb2dpbiI6IntcInRpbWVcIjpcIjIwMjMtMDctMjFUMTM6MDc6NTQuMjY4MDI4XCIsXCJjaXR5XCI6XCJTYW4gTWFyY29zXCIsXCJyZWdpb25cIjpcIkNhbGlmb3JuaWFcIixcImNvdW50cnlcIjpcIlVuaXRlZCBTdGF0ZXNcIixcImxvY2FsZVwiOlwiQW1lcmljYS9Mb3NfQW5nZWxlc1wifSIsInJvbGVzIjpbXSwiaXNzIjoic2VjdXJpdHkiLCJzZXNzaW9uX2lkIjoiMDIyY2Q4ODUtYjA5MS00YWFhLWI4ZDgtMTkxZmE2NTM3ZjA4IiwiY2xpZW50X2lkIjoiMzYxOWYwMGQtMzJkNC00OTgzLTkyZjgtZWJmZDNhNjg4OThiIiwicmVxdWlyZWRfMmZhXzJwcm9jZWVkIjoiU01TIiwibmJmIjoxNjg5OTcwMDc0LCJkb21pY2lsZSI6IkNPIiwiY3VycmVuY3kiOiJNWE4iLCJhdXRoX2Nob2ljZSI6ImF1dGhfZGVjbGluZWQiLCJleHAiOjE2OTUxNTQwNzQsImxhbmciOiJwb3IiLCJpYXQiOjE2ODk5NzAwNzQsImVtYWlsIjoibXhfdGVzdDY4QGdtYWlsLmNvbSJ9.h4_7MLtNiiymQnANJf6RhReoFdj_HmZl3vW9gAc2SA\\\"}\");\n    }\n    @Override\n    public void onOpen(ServerHandshake handshakedata) {\n        log.info(\"opened connection: \" + handshakedata.getHttpStatusMessage());\n    }\n    @Override\n    public void onMessage(String message) {\n        log.info(\"received: \" + message);\n    }\n    @Override\n    public void onClose(\n            int code,\n            String reason,\n            boolean remote\n    ) {\n        // The close codes are documented in class org.java_websocket.framing.CloseFrame\n        log.info(\n                \"Connection closed by \" + (remote ? \"remote peer\" : \"us\") + \" Code: \" + code + \" Reason: \"\n                        + reason);\n        exit(-1);\n    }\n    @Override\n    public void onError(Exception ex) {\n        ex.printStackTrace();\n        // if the error is fatal then onClose will be called additionally\n        System.err.println(\"Error: \" + ex.getMessage());\n    }\n}\n\n</code></pre><h2 id=\"market-data\">MARKET DATA</h2>\n<p>The Market Data Ticker Plant publishes real time market data via Websocket Push. Once you connect to the Ticker Plant, you must send a subscription request for subscribing tp market data as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"type\": \"subscribe\",\n  \"channels\": [\n    {\n      \"name\": \"inside_market\",\n      \"product_ids\": [\n        \"BTC-USD\"\n      ]\n    }\n  ]\n}\n\n</code></pre><p>Here is an example for connecting to Market Data Websocket in Java:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import org.java_websocket.client.WebSocketClient;\nimport org.java_websocket.drafts.Draft;\nimport org.java_websocket.handshake.ServerHandshake;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.nio.ByteBuffer;\npublic class TestClient\n        extends WebSocketClient {\n    public TestClient(\n            URI serverUri,\n            Draft draft\n    ) {\n        super(\n                serverUri,\n                draft\n        );\n    }\n    public TestClient(URI serverURI) {\n        super(serverURI);\n    }\n    public static void main(String[] args)\n            throws\n            URISyntaxException,\n            InterruptedException {\n        System.out.println(\"...Starting Client\");\n        WebSocketClient client = new TestClient(new URI(\"wss://api.bloxcross-dev.com/tickerplant\"));\n        client.connect();\n        client.setConnectionLostTimeout(30);\n        Thread.sleep(5000);\n        client.send(\" {\\\"type\\\": \\\"subscribe\\\",\\\"channels\\\": [{\\\"name\\\": \\\"inside_market\\\",\\\"product_ids\\\": \"\n                            + \"[\\\"BTC-USD\\\"]}]}\");\n    }\n    @Override\n    public void onOpen(ServerHandshake handshakedata) {\n        System.out.println(\"new connection opened\");\n    }\n    @Override\n    public void onClose(\n            int code,\n            String reason,\n            boolean remote\n    ) {\n        System.out.println(\"closed with exit code \" + code + \" additional info: \" + reason);\n    }\n    @Override\n    public void onMessage(String message) {\n        System.out.println(\"received message: \" + message);\n    }\n    @Override\n    public void onMessage(ByteBuffer message) {\n        System.out.println(\"received ByteBuffer\");\n    }\n    @Override\n    public void onError(Exception ex) {\n        System.err.println(\"an error occurred:\" + ex);\n    }\n}\n\n</code></pre><h1 id=\"rest-api\">REST API</h1>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"WEBSOCKETS","slug":"websockets"},{"content":"REST API","slug":"rest-api"}],"owner":"6819598","collectionId":"b99fe274-e7be-4d65-92d1-9d451ea6603d","publishedId":"2s946bBZvX","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-07-11T13:31:26.000Z"},"item":[{"name":"START_HERE","item":[{"name":"[I] Register Account Owner","item":[{"name":"1. Hello","id":"5b139f10-8c75-488b-92c7-45fa8bd42350","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/register/hello","description":"<h2 id=\"register-hello-endpoint\">Register Hello Endpoint</h2>\n<p>This endpoint is used to register a user and respond with a welcome message. When a POST request is made to <code>{{apiurl}}/register/hello</code>, the server processes the request and returns a confirmation message indicating successful registration.</p>\n<h3 id=\"expected-outcomes\">Expected Outcomes</h3>\n<p>Upon a successful request, the API will return a status code of <strong>200</strong> along with a JSON response containing a friendly welcome message. This indicates that the user has been successfully registered and is now part of the system.</p>\n<h3 id=\"response-example\">Response Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"Hello There, Welcome to Blox! You have reached the right place... API Away!\"\n}\n\n</code></pre>\n<p>This endpoint is a sanity check that you are connecting to our API Server</p>\n","urlObject":{"path":["register","hello"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b139f10-8c75-488b-92c7-45fa8bd42350"},{"name":"2. Register Account Owner","id":"3c1925a1-b2a3-46ec-a24c-87709bfaa421","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"KR1IeAL2DwGLyXcCwjMV4cclghlg2ltJHcxOdSAxJhGMZWFdUpJosldXxrOqZoTF"}],"body":{"mode":"raw","raw":"{\n    \"fname\":\"Diego\",\n    \"lname\":\"Test2\",\n    \"email\":\"baezd@yahoo.com\",\n    \"phone\":\"+12122561693\",\n    \"password\":\"My$tandard15\",\n    \"domicile\":\"CO\",\n    \"language\":\"eng\",\n    \"preferred_currency\": \"USD\",\n    \"ref_code\": \"123456\",\n    \"person_type\": \"business\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/v2/simple","description":"<p>The user registration does not require Authorization and is used for all interactions with the system.</p>\n<p><strong>IMPORTANT: For verification purposes prior to Depositing/Paying/Withdrawing the user must perfomr KYC/AML which is confidectial. For the KYC/AML process to succeed, the First Name (fname) and Last Name (lname) must macth excatly the ID which will be presented during the validatin process.</strong></p>\n<p>The Parameters are:</p>\n<ul>\n<li>\"fname\": First Name of the user registering</li>\n<li>\"lname\": Last Name</li>\n<li>\"email\": Email of the user</li>\n<li>\"phone\": Phone number, it must begin with a '+country_code', a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Countries</li>\n<li>\"password\":\"Password</li>\n<li>\"domicile\": \"gec code\" a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Countries</li>\n<li>\"language\":\"alpha3_b code\", a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Languages</li>\n<li>\"preferred_currency\": \"Currency id\" , a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Currencies</li>\n</ul>\n<p><strong>IMPORTANT: Password must have the folliwng complexity:</strong></p>\n<ol>\n<li>At least 8 characters,</li>\n<li>At least one Upper Case,</li>\n<li>At least one Lower case,</li>\n<li>At least One Digit,</li>\n<li>At least One Special Character,</li>\n<li>No alphabetical sequence,</li>\n<li>No numerical sequence,</li>\n<li>No USQwerty sequence,</li>\n<li>No more than 2 repeated characters,</li>\n<li>No spaces</li>\n</ol>\n<p><em><strong>IMPORTANT: No two users can have the same email o phone number</strong></em></p>\n<p>Once the User is created successfully the following Message will be returned:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{    \n\"success\": true,    \n\"code\": 0,    \n\"payload\": \"Success Registering baezd1@yahoo.com\"\n}\n\n</code></pre>\n<p>Otherwise an Error code will be returned.</p>\n","urlObject":{"path":["register","v2","simple"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"bd1d230f-dffb-49d4-9b94-e29b46d59658","name":"Register","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fname\":\"Company\",\n    \"lname\":\"Admin\",\n    \"email\":\"me@yahoo.com\",\n    \"phone\":\"+15653726254\",\n    \"password\":\"My$tandard15\",\n    \"domicile\":\"CO\",\n    \"language\":\"eng\",\n    \"person_type\": \"businness\",\n    \"preferred_currency\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/v2/simple"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:19:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"70"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"Success Registering me@yahoo.com\"\n}"},{"id":"4536fcac-e964-4d87-bed7-38a3aaab6fc0","name":"Register","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fname\":\"Company\",\n    \"lname\":\"Admin\",\n    \"email\":\"me@yahoo.com\",\n    \"phone\":\"+15653726254\",\n    \"password\":\"My$tandard15\",\n    \"domicile\":\"CO\",\n    \"language\":\"eng\",\n    \"person_type\": \"businness\",\n    \"preferred_currency\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/v2/simple"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:19:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"24"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"Unable to create Account"}],"_postman_id":"3c1925a1-b2a3-46ec-a24c-87709bfaa421"},{"name":"3. Login","event":[{"listen":"test","script":{"id":"ebf7f8c5-29f2-4b8a-8e5c-7ba58161db75","exec":["var res = JSON.parse(responseBody);","pm.environment.set('token', res.access_token);","pm.environment.set('bearer token', res.access_token);"],"type":"text/javascript","packages":{}}}],"id":"0eb8d5bd-73f1-4bea-b97f-8ea3f5897267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"baezd@yahoo.com\",\r\n  \"password\": \"My$tandard15\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/login","description":"<p>This is used to login to the system. The login process is composed of three steps:</p>\n<ol>\n<li>Login with <em>username</em> and <em>passwrod</em></li>\n<li>Base on the value of the returnes JSON, the field \"<strong>required_2fa_2proceed</strong>\": \"SMS\",(in tis case a SMS 2FA) you need to send a code to the user using <strong>Confirm Phone</strong> in this case.</li>\n<li>Once the user hs received the code sent, is has to <strong>Validate Phone</strong> sending the code in thsi case.</li>\n</ol>\n<p>A good way to check if the user has been fully validated, is ti call <strong>Get Client Config</strong> and should return</p>\n<blockquote>\n<p>\"required_2fa_2proceed\": \"NONE\", </p>\n</blockquote>\n<p>If it is not fully verified, then this Message will appear:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n","urlObject":{"path":["login"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"52a611f7-c423-40be-9353-e37c16f1483f","name":"Login","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"me@yahoo.com\",\r\n  \"password\": \"My$tandard15\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:21:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"771"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"username\": \"me@yahoo.com\",\n    \"required_2fa_2proceed\": \"SMS\",\n    \"auth_choice\": \"auth_pending\",\n    \"domicile\": \"CO\",\n    \"lang\": \"eng\",\n    \"currency\": \"USD\",\n    \"last_login\": \"{\\\"time\\\":\\\"2023-06-26T06:21:10.623779\\\",\\\"city\\\":\\\"New York\\\",\\\"region\\\":\\\"New York\\\",\\\"country\\\":\\\"United States\\\",\\\"locale\\\":\\\"America/Chicago\\\"}\",\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJtZUB5YWhvby5jb20iLCJsYXN0X2xvZ2luIjoie1widGltZVwiOlwiMjAyMy0wNi0yNlQwNjoyMToxMC42MjM3NzlcIixcImNpdHlcIjpcIk5ldyBZb3JrXCIsXCJyZWdpb25cIjpcIk5ldyBZb3JrXCIsXCJjb3VudHJ5XCI6XCJVbml0ZWQgU3RhdGVzXCIsXCJsb2NhbGVcIjpcIkFtZXJpY2EvQ2hpY2Fnb1wifSIsInJvbGVzIjpbXSwiaXNzIjoic2VjdXJpdHkiLCJzZXNzaW9uX2lkIjoiYzI2YWQyNWMtYjZiYy00OTZjLTlmOWUtOTA0YjAxYjA2ODA2IiwiY2xpZW50X2lkIjoiZTcwNTAxMjAtYzUzNS00YmQ2LTlmY2MtNzM2NmY4MjM5YTgyIiwicmVxdWlyZWRfMmZhXzJwcm9jZWVkIjoiU01TIiwibmJmIjoxNjg3Nzc4NDcxLCJkb21pY2lsZSI6IkNPIiwiY3VycmVuY3kiOiJVU0QiLCJhdXRoX2Nob2ljZSI6ImF1dGhfcGVuZGluZyIsImV4cCI6MTY5Mjk2MjQ3MSwibGFuZyI6ImVuZyIsImlhdCI6MTY4Nzc3ODQ3MSwiZW1haWwiOiJtZUB5YWhvby5jb20ifQ.WxtF7JWaOah_qqHaXX0DexXRPTWz3k1pOEonyNZFOLM\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 5184000\n}"}],"_postman_id":"0eb8d5bd-73f1-4bea-b97f-8ea3f5897267"},{"name":"4. Send 2FA Code via SMS to Get Gauth Seed","id":"a5e57416-edd0-4b85-87c8-ac665ba83bc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/register/confirmPhone","description":"<h3 id=\"confirm-phone-number\">Confirm Phone Number</h3>\n<p>This endpoint is used to confirm a user's phone number during the registration process. It ensures that the phone number provided by the user is valid and can be used for further communication.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/register/confirmPhone</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: <code>application/x-www-form-urlencoded</code></p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body must include the following parameters:</p>\n<ul>\n<li><p><code>phone</code>: (string) The phone number that needs to be confirmed.</p>\n</li>\n<li><p><code>code</code>: (string) The confirmation code sent to the user's phone number.</p>\n</li>\n</ul>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon successful confirmation, the response will include:</p>\n<ul>\n<li><p><code>success</code>: (boolean) Indicates whether the phone number confirmation was successful.</p>\n</li>\n<li><p><code>message</code>: (string) A message providing additional information about the confirmation process.</p>\n</li>\n<li><p><code>data</code>: (object) An object containing any relevant data related to the confirmation, which may include user details or confirmation status.</p>\n</li>\n</ul>\n<p>In case of an error, the response will provide an error message detailing the issue encountered during the confirmation process.</p>\n","urlObject":{"path":["register","confirmPhone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5e57416-edd0-4b85-87c8-ac665ba83bc3"},{"name":"5. Generate 2FA QR with SMS Code Copy","id":"8e3fc633-c19a-47ca-8cc3-fdc9b5a62a12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": 80603145\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/gen_2fa_qrcode_with_smscode","description":"<h2 id=\"endpoint-generate-2fa-qr-code-with-sms-code\">Endpoint: Generate 2FA QR Code with SMS Code</h2>\n<p>This endpoint allows users to generate a Two-Factor Authentication (2FA) QR code using a provided SMS code. It is typically used during the setup of 2FA to enhance account security.</p>\n<h3 id=\"http-method\">HTTP Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<ul>\n<li><strong>code</strong> (integer): The SMS code sent to the user for verification. This code is required to generate the QR code.</li>\n</ul>\n<p><strong>Example Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 92126252\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the server responds with a status code of <code>200</code> and a JSON object containing the following fields:</p>\n<ul>\n<li><p><strong>qrcode</strong> (string): The generated QR code as a string. This will be empty if the generation fails.</p>\n</li>\n<li><p><strong>key</strong> (string): A unique key associated with the generated QR code. This will also be empty if the generation fails.</p>\n</li>\n<li><p><strong>notes</strong> (string): Additional notes or information related to the QR code generation. This will be empty if there are no additional notes.</p>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"qrcode\": \"\",\n  \"key\": \"\",\n  \"notes\": \"\"\n}\n\n</code></pre>\n<p>Ensure that the SMS code is valid before making the request, as an invalid code may result in an unsuccessful QR code generation.</p>\n<p>You can Convert the base64 QR Code using <a href=\"https://base64.guru/converter/decode/image\">https://base64.guru/converter/decode/image</a></p>\n","urlObject":{"path":["register","gen_2fa_qrcode_with_smscode"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e3fc633-c19a-47ca-8cc3-fdc9b5a62a12"},{"name":"6. Logout Now","id":"cb02aeab-67cb-4554-9df4-02968d96d5a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/logout","description":"<h2 id=\"logout-api\">Logout API</h2>\n<p>This endpoint is used to log out a user from the application. When a user successfully logs out, their session is terminated, and they will no longer have access to protected resources until they log in again.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/logout</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be sent in <code>application/x-www-form-urlencoded</code> format and should include the following parameter:</p>\n<ul>\n<li><code>userId</code> (string): The unique identifier of the user who is logging out.</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful logout, the response will contain the following:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success or failure of the logout operation.</p>\n</li>\n<li><p><strong>message</strong> (string): A descriptive message providing additional details about the logout process.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"User logged out successfully.\"\n}\n\n</code></pre>\n<p>Ensure that the request is made with valid user credentials to successfully log out.</p>\n","urlObject":{"path":["logout"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb02aeab-67cb-4554-9df4-02968d96d5a5"},{"name":"7. Login Again","event":[{"listen":"test","script":{"id":"ebf7f8c5-29f2-4b8a-8e5c-7ba58161db75","exec":["var res = JSON.parse(responseBody);","pm.environment.set('token', res.access_token);","pm.environment.set('bearer token', res.access_token);"],"type":"text/javascript","packages":{}}}],"id":"904292f7-f116-4bee-8d91-0a8edb4d2afc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"baezd@yahoo.com\",\r\n  \"password\": \"My$tandard15\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/login","description":"<p>This is used to login to the system. The login process is composed of three steps:</p>\n<ol>\n<li>Login with <em>username</em> and <em>passwrod</em></li>\n<li>Base on the value of the returnes JSON, the field \"<strong>required_2fa_2proceed</strong>\": \"SMS\",(in tis case a SMS 2FA) you need to send a code to the user using <strong>Confirm Phone</strong> in this case.</li>\n<li>Once the user hs received the code sent, is has to <strong>Validate Phone</strong> sending the code in thsi case.</li>\n</ol>\n<p>A good way to check if the user has been fully validated, is ti call <strong>Get Client Config</strong> and should return</p>\n<blockquote>\n<p>\"required_2fa_2proceed\": \"NONE\", </p>\n</blockquote>\n<p>If it is not fully verified, then this Message will appear:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n","urlObject":{"path":["login"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"5d4b1951-3c10-40aa-ba61-2886b1a37a1c","name":"Login","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"me@yahoo.com\",\r\n  \"password\": \"My$tandard15\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:21:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"771"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"username\": \"me@yahoo.com\",\n    \"required_2fa_2proceed\": \"SMS\",\n    \"auth_choice\": \"auth_pending\",\n    \"domicile\": \"CO\",\n    \"lang\": \"eng\",\n    \"currency\": \"USD\",\n    \"last_login\": \"{\\\"time\\\":\\\"2023-06-26T06:21:10.623779\\\",\\\"city\\\":\\\"New York\\\",\\\"region\\\":\\\"New York\\\",\\\"country\\\":\\\"United States\\\",\\\"locale\\\":\\\"America/Chicago\\\"}\",\n    \"access_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJtZUB5YWhvby5jb20iLCJsYXN0X2xvZ2luIjoie1widGltZVwiOlwiMjAyMy0wNi0yNlQwNjoyMToxMC42MjM3NzlcIixcImNpdHlcIjpcIk5ldyBZb3JrXCIsXCJyZWdpb25cIjpcIk5ldyBZb3JrXCIsXCJjb3VudHJ5XCI6XCJVbml0ZWQgU3RhdGVzXCIsXCJsb2NhbGVcIjpcIkFtZXJpY2EvQ2hpY2Fnb1wifSIsInJvbGVzIjpbXSwiaXNzIjoic2VjdXJpdHkiLCJzZXNzaW9uX2lkIjoiYzI2YWQyNWMtYjZiYy00OTZjLTlmOWUtOTA0YjAxYjA2ODA2IiwiY2xpZW50X2lkIjoiZTcwNTAxMjAtYzUzNS00YmQ2LTlmY2MtNzM2NmY4MjM5YTgyIiwicmVxdWlyZWRfMmZhXzJwcm9jZWVkIjoiU01TIiwibmJmIjoxNjg3Nzc4NDcxLCJkb21pY2lsZSI6IkNPIiwiY3VycmVuY3kiOiJVU0QiLCJhdXRoX2Nob2ljZSI6ImF1dGhfcGVuZGluZyIsImV4cCI6MTY5Mjk2MjQ3MSwibGFuZyI6ImVuZyIsImlhdCI6MTY4Nzc3ODQ3MSwiZW1haWwiOiJtZUB5YWhvby5jb20ifQ.WxtF7JWaOah_qqHaXX0DexXRPTWz3k1pOEonyNZFOLM\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 5184000\n}"}],"_postman_id":"904292f7-f116-4bee-8d91-0a8edb4d2afc"},{"name":"8. Get Client Config","id":"b78d7c69-d40f-46ae-a70f-98ce57edd26a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/client/config","description":"<p>Used to retrive User status nad information.</p>\n<p>If user is not loged in it will retturn:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}\n\n</code></pre>\n<p>If user is not fully verified via 2FA it will reply:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n<p>If the user is validated it will retrieve the basic User infoormation.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n  \"active_session\": true,\n  \"blacklisted\": false,\n  \"email\": \"me@yahoo.com\",\n  \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n  \"client_status\": \"PENDING_VERIFICATION\",\n  \"language\": \"eng\",\n  \"currency\": \"USD\",\n  \"client_level\": \"NOVICE\",\n  \"id_verified\": false,\n  \"kyc_completed\": false,\n  \"phone_validated\": true,\n  \"email_validated\": false,\n  \"fname\": \"company\",\n  \"lname\": \"admin\",\n  \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n  \"auth_choice\": \"auth_pending\",\n  \"required_2fa_2proceed\": \"NONE\",\n  \"phone\": \"+15653726254\",\n  \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n  \"domicile\": \"CO\",\n  \"fullName\": \"company admin\",\n  \"clientVerified\": false\n}\n\n</code></pre>\n<p>Fields:</p>\n<ul>\n<li>\"<strong>key</strong>\": identifyer,</li>\n<li>\"<strong>active_session</strong>\": If session is actie</li>\n<li>\"<strong>blacklisted</strong>\": If client is Balcklisted,</li>\n<li>\"<strong>email</strong>\": user email</li>\n<li>\"<strong>client_id</strong>\": client ID</li>\n<li>\"<strong>client_status</strong>\": If client has been verified</li>\n<li>\"<strong>language</strong>\":Language chosen by User</li>\n<li>\"<strong>currency</strong>\": Currency chosen</li>\n<li>\"<strong>id_verified</strong>\": If Client ID has been verified</li>\n<li>\"<strong>kyc_completed</strong>\": KYC has been completed</li>\n<li>\"<strong>phone_validated</strong>\": Phone has been validated</li>\n<li>\"<strong>email_validated</strong>\": Email has been validated</li>\n<li>\"<strong>fname</strong>\": First Name</li>\n<li>\"<strong>lname</strong>\": Last Name</li>\n<li>\"<strong>auth_choice</strong>\": Choice for Authrization</li>\n<li>\"<strong>required_2fa_2proceed</strong>\": If it is waitng for 2FA validation</li>\n<li>\"<strong>phone</strong>\": Telephone</li>\n<li>\"<strong>clientVerified</strong>\": If client has been verified</li>\n</ul>\n","urlObject":{"path":["client","config"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"c6d64741-d5b5-41ba-be06-2eb5abdc87de","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"883"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n    \"active_session\": true,\n    \"blacklisted\": false,\n    \"email\": \"me@yahoo.com\",\n    \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n    \"client_status\": \"PENDING_VERIFICATION\",\n    \"language\": \"eng\",\n    \"currency\": \"USD\",\n    \"client_level\": \"NOVICE\",\n    \"id_verified\": false,\n    \"kyc_completed\": false,\n    \"phone_validated\": true,\n    \"email_validated\": false,\n    \"fname\": \"company\",\n    \"lname\": \"admin\",\n    \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"NONE\",\n    \"phone\": \"+15653726254\",\n    \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n    \"domicile\": \"CO\",\n    \"fullName\": \"company admin\",\n    \"clientVerified\": false\n}"},{"id":"56a3e88c-4d79-4d64-8452-92ef608a5a83","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 12:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}"}],"_postman_id":"b78d7c69-d40f-46ae-a70f-98ce57edd26a"},{"name":"9. Validate 2fa - post-login/prevalidate","id":"8b7326aa-5373-4b4b-9636-e67cd6b2a850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"208022\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validate_2fa_code","description":"<h2 id=\"validate-two-factor-authentication-code\">Validate Two-Factor Authentication Code</h2>\n<p>This endpoint is used to validate a two-factor authentication (2FA) code provided by the user during the registration process. It ensures that the user has access to the second factor of authentication before proceeding with account creation or other sensitive actions.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>code</strong> (string): The 2FA code that the user has received. This code is typically a time-sensitive numeric value sent to the user's registered device.</li>\n</ul>\n<h3 id=\"request-example\">Request Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"208022\"\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful validation of the 2FA code, the server will respond with a confirmation indicating that the code is valid. In case of an invalid code, an error message will be returned, specifying the nature of the error.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the 2FA code is entered correctly and is not expired.</p>\n</li>\n<li><p>This endpoint is crucial for enhancing the security of user accounts by requiring a second form of verification.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","validate_2fa_code"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b7326aa-5373-4b4b-9636-e67cd6b2a850"},{"name":"10. Get Client Config - Validated","id":"09dd3aa2-bcdb-456b-be9c-3fc124287e43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/client/config","description":"<p>Used to retrive User status nad information.</p>\n<p>If user is not loged in it will retturn:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}\n\n</code></pre>\n<p>If user is not fully verified via 2FA it will reply:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n<p>If the user is validated it will retrieve the basic User infoormation.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n  \"active_session\": true,\n  \"blacklisted\": false,\n  \"email\": \"me@yahoo.com\",\n  \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n  \"client_status\": \"PENDING_VERIFICATION\",\n  \"language\": \"eng\",\n  \"currency\": \"USD\",\n  \"client_level\": \"NOVICE\",\n  \"id_verified\": false,\n  \"kyc_completed\": false,\n  \"phone_validated\": true,\n  \"email_validated\": false,\n  \"fname\": \"company\",\n  \"lname\": \"admin\",\n  \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n  \"auth_choice\": \"auth_pending\",\n  \"required_2fa_2proceed\": \"NONE\",\n  \"phone\": \"+15653726254\",\n  \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n  \"domicile\": \"CO\",\n  \"fullName\": \"company admin\",\n  \"clientVerified\": false\n}\n\n</code></pre>\n<p>Fields:</p>\n<ul>\n<li>\"<strong>key</strong>\": identifyer,</li>\n<li>\"<strong>active_session</strong>\": If session is actie</li>\n<li>\"<strong>blacklisted</strong>\": If client is Balcklisted,</li>\n<li>\"<strong>email</strong>\": user email</li>\n<li>\"<strong>client_id</strong>\": client ID</li>\n<li>\"<strong>client_status</strong>\": If client has been verified</li>\n<li>\"<strong>language</strong>\":Language chosen by User</li>\n<li>\"<strong>currency</strong>\": Currency chosen</li>\n<li>\"<strong>id_verified</strong>\": If Client ID has been verified</li>\n<li>\"<strong>kyc_completed</strong>\": KYC has been completed</li>\n<li>\"<strong>phone_validated</strong>\": Phone has been validated</li>\n<li>\"<strong>email_validated</strong>\": Email has been validated</li>\n<li>\"<strong>fname</strong>\": First Name</li>\n<li>\"<strong>lname</strong>\": Last Name</li>\n<li>\"<strong>auth_choice</strong>\": Choice for Authrization</li>\n<li>\"<strong>required_2fa_2proceed</strong>\": If it is waitng for 2FA validation</li>\n<li>\"<strong>phone</strong>\": Telephone</li>\n<li>\"<strong>clientVerified</strong>\": If client has been verified</li>\n</ul>\n","urlObject":{"path":["client","config"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"322f7e7c-d73a-48c2-8f5b-c76189b437c7","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"883"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n    \"active_session\": true,\n    \"blacklisted\": false,\n    \"email\": \"me@yahoo.com\",\n    \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n    \"client_status\": \"PENDING_VERIFICATION\",\n    \"language\": \"eng\",\n    \"currency\": \"USD\",\n    \"client_level\": \"NOVICE\",\n    \"id_verified\": false,\n    \"kyc_completed\": false,\n    \"phone_validated\": true,\n    \"email_validated\": false,\n    \"fname\": \"company\",\n    \"lname\": \"admin\",\n    \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"NONE\",\n    \"phone\": \"+15653726254\",\n    \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n    \"domicile\": \"CO\",\n    \"fullName\": \"company admin\",\n    \"clientVerified\": false\n}"},{"id":"538a4984-5c89-4ef1-be01-2295c81dc264","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 12:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}"}],"_postman_id":"09dd3aa2-bcdb-456b-be9c-3fc124287e43"},{"name":"11. Send 2FA Code to Vaildate Phone","id":"05370847-a3cb-4d6c-ad52-f67db9c76e20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/register/confirmPhone","description":"<h2 id=\"confirm-phone-registration\">Confirm Phone Registration</h2>\n<p>This endpoint is used to confirm a user's phone registration. It accepts a POST request to the specified endpoint.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<ul>\n<li><strong>POST</strong></li>\n</ul>\n<h3 id=\"endpoint\">Endpoint</h3>\n<ul>\n<li><code>{{apiurl}}/register/confirmPhone</code></li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body should be sent in <code>application/x-www-form-urlencoded</code> format and must include the following parameters:</p>\n<ul>\n<li><p><strong>phone</strong> (text): The phone number that needs to be confirmed.</p>\n</li>\n<li><p><strong>code</strong> (text): The confirmation code sent to the user's phone.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>On successful confirmation, the API will respond with a JSON object indicating the result of the operation. The response will typically include a success message or an error message if the confirmation fails.</p>\n<p>Ensure that the phone number and confirmation code provided in the request are valid to receive the expected response.</p>\n","urlObject":{"path":["register","confirmPhone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"05370847-a3cb-4d6c-ad52-f67db9c76e20"},{"name":"12. Validate SMS Code  Received","id":"13ce59f7-74e1-47c2-8dc8-db0e2fa83af6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\":\"86138915\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validatePhone","description":"<h2 id=\"validate-phone-registration\">Validate Phone Registration</h2>\n<p>This endpoint is used to validate a phone number during the registration process. It checks if the provided code corresponds to the phone number that was submitted for registration.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/register/validatePhone</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<ul>\n<li><code>code</code> (string): The validation code sent to the user's phone number. This code is used to verify the ownership of the phone number during registration.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful validation, the response will contain information about the validation status. The structure of the response will typically include:</p>\n<ul>\n<li><p><code>status</code> (string): Indicates whether the validation was successful or failed.</p>\n</li>\n<li><p><code>message</code> (string): A descriptive message regarding the validation result.</p>\n</li>\n</ul>\n<p>Ensure that the <code>code</code> provided in the request matches the one sent to the user's phone for successful validation.</p>\n","urlObject":{"path":["register","validatePhone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13ce59f7-74e1-47c2-8dc8-db0e2fa83af6"},{"name":"13. Get Client Config - Phone Validated","id":"58b38b74-c7be-4cfb-b3ca-d1a3a098c393","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/client/config","description":"<p>Used to retrive User status nad information.</p>\n<p>If user is not loged in it will retturn:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}\n\n</code></pre>\n<p>If user is not fully verified via 2FA it will reply:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n<p>If the user is validated it will retrieve the basic User infoormation.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n  \"active_session\": true,\n  \"blacklisted\": false,\n  \"email\": \"me@yahoo.com\",\n  \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n  \"client_status\": \"PENDING_VERIFICATION\",\n  \"language\": \"eng\",\n  \"currency\": \"USD\",\n  \"client_level\": \"NOVICE\",\n  \"id_verified\": false,\n  \"kyc_completed\": false,\n  \"phone_validated\": true,\n  \"email_validated\": false,\n  \"fname\": \"company\",\n  \"lname\": \"admin\",\n  \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n  \"auth_choice\": \"auth_pending\",\n  \"required_2fa_2proceed\": \"NONE\",\n  \"phone\": \"+15653726254\",\n  \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n  \"domicile\": \"CO\",\n  \"fullName\": \"company admin\",\n  \"clientVerified\": false\n}\n\n</code></pre>\n<p>Fields:</p>\n<ul>\n<li>\"<strong>key</strong>\": identifyer,</li>\n<li>\"<strong>active_session</strong>\": If session is actie</li>\n<li>\"<strong>blacklisted</strong>\": If client is Balcklisted,</li>\n<li>\"<strong>email</strong>\": user email</li>\n<li>\"<strong>client_id</strong>\": client ID</li>\n<li>\"<strong>client_status</strong>\": If client has been verified</li>\n<li>\"<strong>language</strong>\":Language chosen by User</li>\n<li>\"<strong>currency</strong>\": Currency chosen</li>\n<li>\"<strong>id_verified</strong>\": If Client ID has been verified</li>\n<li>\"<strong>kyc_completed</strong>\": KYC has been completed</li>\n<li>\"<strong>phone_validated</strong>\": Phone has been validated</li>\n<li>\"<strong>email_validated</strong>\": Email has been validated</li>\n<li>\"<strong>fname</strong>\": First Name</li>\n<li>\"<strong>lname</strong>\": Last Name</li>\n<li>\"<strong>auth_choice</strong>\": Choice for Authrization</li>\n<li>\"<strong>required_2fa_2proceed</strong>\": If it is waitng for 2FA validation</li>\n<li>\"<strong>phone</strong>\": Telephone</li>\n<li>\"<strong>clientVerified</strong>\": If client has been verified</li>\n</ul>\n","urlObject":{"path":["client","config"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"9bc27a33-cb62-4f91-823d-4db8db6027d3","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"883"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n    \"active_session\": true,\n    \"blacklisted\": false,\n    \"email\": \"me@yahoo.com\",\n    \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n    \"client_status\": \"PENDING_VERIFICATION\",\n    \"language\": \"eng\",\n    \"currency\": \"USD\",\n    \"client_level\": \"NOVICE\",\n    \"id_verified\": false,\n    \"kyc_completed\": false,\n    \"phone_validated\": true,\n    \"email_validated\": false,\n    \"fname\": \"company\",\n    \"lname\": \"admin\",\n    \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"NONE\",\n    \"phone\": \"+15653726254\",\n    \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n    \"domicile\": \"CO\",\n    \"fullName\": \"company admin\",\n    \"clientVerified\": false\n}"},{"id":"056eea3d-28d0-47d6-8355-34d003d9d47f","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 12:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}"}],"_postman_id":"58b38b74-c7be-4cfb-b3ca-d1a3a098c393"},{"name":"14. Send 2FA Code to Validate Email","id":"c77a3b1c-e99a-44fe-9abc-b31fa607c84a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/confirmEmail","description":"<h2 id=\"confirm-email-registration\">Confirm Email Registration</h2>\n<p>This endpoint is used to confirm a user's email address during the registration process. It is typically called after a user has registered and received a confirmation email.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request must be sent as a form-data or x-www-form-urlencoded body, containing the following parameters:</p>\n<ul>\n<li><p><strong>email</strong> (text): The email address of the user that needs to be confirmed.</p>\n</li>\n<li><p><strong>confirmationCode</strong> (text): A unique code sent to the user's email to verify their ownership of the email address.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will respond with a confirmation message indicating that the email address has been successfully verified. The response may include:</p>\n<ul>\n<li><p><strong>status</strong>: A string indicating the success or failure of the operation.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the result of the request.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the email and confirmation code are correctly entered to avoid errors.</p>\n</li>\n<li><p>This endpoint is crucial for completing the registration process and allowing users to access their accounts.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","confirmEmail"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c77a3b1c-e99a-44fe-9abc-b31fa607c84a"},{"name":"15. Validate Email Code","id":"fa25add2-21d1-4ddf-808b-9a8f838e8a9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\":88089780\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validateEmail","description":"<h2 id=\"validate-email-endpoint\">Validate Email Endpoint</h2>\n<p>This endpoint is used to validate an email registration by verifying a provided code.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/register/validateEmail</code></p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and should contain the following parameter:</p>\n<ul>\n<li><strong>code</strong> (integer): A numeric code that is used for email validation.</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 88089780\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The expected response format for this endpoint is typically a JSON object indicating the success or failure of the email validation process. The specific structure of the response may vary based on the implementation but generally includes a status message and possibly additional data regarding the validation outcome.</p>\n<h3 id=\"notes\">Notes</h3>\n<p>Ensure that the code provided in the request body is valid and corresponds to the email registration process to receive an accurate response.</p>\n","urlObject":{"path":["register","validateEmail"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa25add2-21d1-4ddf-808b-9a8f838e8a9a"},{"name":"16. Get Client Config - Email Validated Copy","id":"edeab6b2-6a89-4f1e-97f5-848fe0b0d1b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/client/config","description":"<p>Used to retrive User status nad information.</p>\n<p>If user is not loged in it will retturn:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}\n\n</code></pre>\n<p>If user is not fully verified via 2FA it will reply:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n<p>If the user is validated it will retrieve the basic User infoormation.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n  \"active_session\": true,\n  \"blacklisted\": false,\n  \"email\": \"me@yahoo.com\",\n  \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n  \"client_status\": \"PENDING_VERIFICATION\",\n  \"language\": \"eng\",\n  \"currency\": \"USD\",\n  \"client_level\": \"NOVICE\",\n  \"id_verified\": false,\n  \"kyc_completed\": false,\n  \"phone_validated\": true,\n  \"email_validated\": false,\n  \"fname\": \"company\",\n  \"lname\": \"admin\",\n  \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n  \"auth_choice\": \"auth_pending\",\n  \"required_2fa_2proceed\": \"NONE\",\n  \"phone\": \"+15653726254\",\n  \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n  \"domicile\": \"CO\",\n  \"fullName\": \"company admin\",\n  \"clientVerified\": false\n}\n\n</code></pre>\n<p>Fields:</p>\n<ul>\n<li>\"<strong>key</strong>\": identifyer,</li>\n<li>\"<strong>active_session</strong>\": If session is actie</li>\n<li>\"<strong>blacklisted</strong>\": If client is Balcklisted,</li>\n<li>\"<strong>email</strong>\": user email</li>\n<li>\"<strong>client_id</strong>\": client ID</li>\n<li>\"<strong>client_status</strong>\": If client has been verified</li>\n<li>\"<strong>language</strong>\":Language chosen by User</li>\n<li>\"<strong>currency</strong>\": Currency chosen</li>\n<li>\"<strong>id_verified</strong>\": If Client ID has been verified</li>\n<li>\"<strong>kyc_completed</strong>\": KYC has been completed</li>\n<li>\"<strong>phone_validated</strong>\": Phone has been validated</li>\n<li>\"<strong>email_validated</strong>\": Email has been validated</li>\n<li>\"<strong>fname</strong>\": First Name</li>\n<li>\"<strong>lname</strong>\": Last Name</li>\n<li>\"<strong>auth_choice</strong>\": Choice for Authrization</li>\n<li>\"<strong>required_2fa_2proceed</strong>\": If it is waitng for 2FA validation</li>\n<li>\"<strong>phone</strong>\": Telephone</li>\n<li>\"<strong>clientVerified</strong>\": If client has been verified</li>\n</ul>\n","urlObject":{"path":["client","config"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"19e60478-e8e3-4de1-a6a1-3e29adbbb452","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"883"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n    \"active_session\": true,\n    \"blacklisted\": false,\n    \"email\": \"me@yahoo.com\",\n    \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n    \"client_status\": \"PENDING_VERIFICATION\",\n    \"language\": \"eng\",\n    \"currency\": \"USD\",\n    \"client_level\": \"NOVICE\",\n    \"id_verified\": false,\n    \"kyc_completed\": false,\n    \"phone_validated\": true,\n    \"email_validated\": false,\n    \"fname\": \"company\",\n    \"lname\": \"admin\",\n    \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"NONE\",\n    \"phone\": \"+15653726254\",\n    \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n    \"domicile\": \"CO\",\n    \"fullName\": \"company admin\",\n    \"clientVerified\": false\n}"},{"id":"82865aa1-359f-4a78-8d44-1c7d21e1c557","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 12:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}"}],"_postman_id":"edeab6b2-6a89-4f1e-97f5-848fe0b0d1b6"},{"name":"17. [DEV_ONLY] Approve KYC","id":"3aac689d-027f-494b-879e-bece3a4ffad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/client/kyc_approve","description":"<h2 id=\"kyc-approval-endpoint\">KYC Approval Endpoint</h2>\n<p>This is a DEVELOPMENT ONLY endpoint.</p>\n<p>This endpoint is used to approve a Know Your Customer (KYC) request for a client. It is typically called after the initial KYC information has been submitted and requires validation before the client can proceed with further transactions.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/client/kyc_approve</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body should be sent in <code>application/x-www-form-urlencoded</code> format and must include the following parameters:</p>\n<ul>\n<li><p><code>client_id</code> (string): The unique identifier of the client whose KYC is being approved.</p>\n</li>\n<li><p><code>approval_status</code> (string): The status of the approval, indicating whether the KYC is approved or rejected.</p>\n</li>\n<li><p><code>comments</code> (string, optional): Any additional comments or notes regarding the approval decision.</p>\n</li>\n</ul>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful processing of the request, the server will respond with a JSON object containing the following fields:</p>\n<ul>\n<li><p><code>success</code> (boolean): Indicates whether the approval was successful.</p>\n</li>\n<li><p><code>message</code> (string): A message providing additional information about the approval process.</p>\n</li>\n<li><p><code>data</code> (object): Contains details of the approved KYC request, including the <code>client_id</code> and the <code>approval_status</code>.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"KYC approval successful.\",\n  \"data\": {\n    \"client_id\": \"12345\",\n    \"approval_status\": \"approved\"\n  }\n}\n\n</code></pre>\n<p>This endpoint is crucial for ensuring that client identities are verified and compliant with regulatory requirements before engaging in financial activities.</p>\n","urlObject":{"path":["client","kyc_approve"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3aac689d-027f-494b-879e-bece3a4ffad0"},{"name":"18. Get Client Config - KYC Completed","id":"2836ffcc-3022-458e-a0b2-f7d79809e90d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/client/config","description":"<p>Used to retrive User status nad information.</p>\n<p>If user is not loged in it will retturn:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}\n\n</code></pre>\n<p>If user is not fully verified via 2FA it will reply:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"state\": \"pending_2fa_verification\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"SMS\"\n}\n\n</code></pre>\n<p>If the user is validated it will retrieve the basic User infoormation.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n  \"active_session\": true,\n  \"blacklisted\": false,\n  \"email\": \"me@yahoo.com\",\n  \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n  \"client_status\": \"PENDING_VERIFICATION\",\n  \"language\": \"eng\",\n  \"currency\": \"USD\",\n  \"client_level\": \"NOVICE\",\n  \"id_verified\": false,\n  \"kyc_completed\": false,\n  \"phone_validated\": true,\n  \"email_validated\": false,\n  \"fname\": \"company\",\n  \"lname\": \"admin\",\n  \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n  \"auth_choice\": \"auth_pending\",\n  \"required_2fa_2proceed\": \"NONE\",\n  \"phone\": \"+15653726254\",\n  \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n  \"domicile\": \"CO\",\n  \"fullName\": \"company admin\",\n  \"clientVerified\": false\n}\n\n</code></pre>\n<p>Fields:</p>\n<ul>\n<li>\"<strong>key</strong>\": identifyer,</li>\n<li>\"<strong>active_session</strong>\": If session is actie</li>\n<li>\"<strong>blacklisted</strong>\": If client is Balcklisted,</li>\n<li>\"<strong>email</strong>\": user email</li>\n<li>\"<strong>client_id</strong>\": client ID</li>\n<li>\"<strong>client_status</strong>\": If client has been verified</li>\n<li>\"<strong>language</strong>\":Language chosen by User</li>\n<li>\"<strong>currency</strong>\": Currency chosen</li>\n<li>\"<strong>id_verified</strong>\": If Client ID has been verified</li>\n<li>\"<strong>kyc_completed</strong>\": KYC has been completed</li>\n<li>\"<strong>phone_validated</strong>\": Phone has been validated</li>\n<li>\"<strong>email_validated</strong>\": Email has been validated</li>\n<li>\"<strong>fname</strong>\": First Name</li>\n<li>\"<strong>lname</strong>\": Last Name</li>\n<li>\"<strong>auth_choice</strong>\": Choice for Authrization</li>\n<li>\"<strong>required_2fa_2proceed</strong>\": If it is waitng for 2FA validation</li>\n<li>\"<strong>phone</strong>\": Telephone</li>\n<li>\"<strong>clientVerified</strong>\": If client has been verified</li>\n</ul>\n","urlObject":{"path":["client","config"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"6fcbbda9-e541-4ce8-b8b3-bf823a7cf6c0","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 11:36:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"883"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"key\": \"e7050120-c535-4bd6-9fcc-7366f8239a82|c26ad25c-b6bc-496c-9f9e-904b01b06806\",\n    \"active_session\": true,\n    \"blacklisted\": false,\n    \"email\": \"me@yahoo.com\",\n    \"client_id\": \"e7050120-c535-4bd6-9fcc-7366f8239a82\",\n    \"client_status\": \"PENDING_VERIFICATION\",\n    \"language\": \"eng\",\n    \"currency\": \"USD\",\n    \"client_level\": \"NOVICE\",\n    \"id_verified\": false,\n    \"kyc_completed\": false,\n    \"phone_validated\": true,\n    \"email_validated\": false,\n    \"fname\": \"company\",\n    \"lname\": \"admin\",\n    \"vouched_public_key\": \".Y1.~@59utQV#xf4LRsa~PEJaBz1wP\",\n    \"auth_choice\": \"auth_pending\",\n    \"required_2fa_2proceed\": \"NONE\",\n    \"phone\": \"+15653726254\",\n    \"fees\": \"{\\\"BUY\\\": 100, \\\"HOLD\\\": 0, \\\"SELL\\\": 100, \\\"DEPOSIT\\\": 0, \\\"RELEASE\\\": 0, \\\"WITHDRAW\\\": 0, \\\"CREDIT_ADJUSTMENT\\\": 0, \\\"CONVERSION_DEPOSIT\\\": 0, \\\"CONVERSION_WITHDRAW\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_DEPOSIT\\\": 0, \\\"INTRA_ACCOUNT_TRANSFER_WITHDRAW\\\": 0}\",\n    \"domicile\": \"CO\",\n    \"fullName\": \"company admin\",\n    \"clientVerified\": false\n}"},{"id":"30877268-e30b-4771-873d-a6134983e1d4","name":"Get Client Config Copy","originalRequest":{"method":"GET","header":[],"url":"{{apiurl}}/client/config"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Jun 2023 12:27:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000074,\n    \"payload\": \"Client Session Not Found\"\n}"}],"_postman_id":"2836ffcc-3022-458e-a0b2-f7d79809e90d"}],"id":"9dc60c80-8c4a-4b51-bcf4-d9a22415f4a4","description":"<p>Initial Registration Steps</p>\n<p>The user registration does not require Authorization and is used for all interactions with the system.</p>\n<p><strong>IMPORTANT: For verification purposes prior to Depositing/Paying/Withdrawing the user must perfomr KYC/AML which is confidectial. For the KYC/AML process to succeed, the First Name (fname) and Last Name (lname) must macth excatly the ID which will be presented during the validatin process.</strong></p>\n<p>The Parameters are:</p>\n<ul>\n<li><p>\"fname\": First Name of the user registering</p>\n</li>\n<li><p>\"lname\": Last Name</p>\n</li>\n<li><p>\"email\": Email of the user</p>\n</li>\n<li><p>\"phone\": Phone number, it must begin with a '+country_code', a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Countries</p>\n</li>\n<li><p>\"password\":\"Password</p>\n</li>\n<li><p>\"domicile\": \"gec code\" a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Countries</p>\n</li>\n<li><p>\"language\":\"alpha3_b code\", a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Languages</p>\n</li>\n<li><p>\"preferred_currency\": \"Currency id\" , a full list of the Countrycodes can be retrieved by calling the REFERENCE-&gt;Get List of All Currencies</p>\n</li>\n</ul>\n<p><strong>IMPORTANT: Password must have the folliwng complexity:</strong></p>\n<ol>\n<li><p>At least 8 characters,</p>\n</li>\n<li><p>At least one Upper Case,</p>\n</li>\n<li><p>At least one Lower case,</p>\n</li>\n<li><p>At least One Digit,</p>\n</li>\n<li><p>At least One Special Character,</p>\n</li>\n<li><p>No alphabetical sequence,</p>\n</li>\n<li><p>No numerical sequence,</p>\n</li>\n<li><p>No USQwerty sequence,</p>\n</li>\n<li><p>No more than 2 repeated characters,</p>\n</li>\n<li><p>No spaces</p>\n</li>\n</ol>\n<p><em><strong>IMPORTANT: No two users can have the same email o phone number</strong></em></p>\n<p>Once the User is created successfully the following Message will be returned:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{    \n\"success\": true,    \n\"code\": 0,    \n\"payload\": \"Success Registering baezd1@yahoo.com\"\n}\n\n</code></pre>\n<p>Otherwise an Error code will be returned.</p>\n","_postman_id":"9dc60c80-8c4a-4b51-bcf4-d9a22415f4a4"},{"name":"[II] Send Corporate Information","item":[{"name":"19. Register corporation","id":"021e8fa0-90ea-429a-a930-314014d5120a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"business_name","value":"My Business Name","type":"text"},{"key":"trade_name","value":"My Trade Name Yasser","type":"text"},{"key":"business_address_1","value":"123 Main St","type":"text"},{"key":"business_address_2","value":"Suite 400 123","type":"text"},{"key":"country","value":"US","type":"text"},{"key":"region","value":"NY","type":"text"},{"key":"city","value":"New York","type":"text"},{"key":"postal_code","value":"10001","type":"text"},{"key":"incorporation_date","value":"2020-05-15","type":"text"},{"key":"incorporation_country","value":"US","type":"text"},{"key":"is_regulated","value":"true","type":"text"},{"key":"is_licensed","value":"false","type":"text"},{"key":"nature_of_business","value":"Technology Services","type":"text"},{"key":"serviced_countries","value":"US,CA,MX","type":"text"},{"key":"operates_in_restricted_countries","value":"false","type":"text"},{"key":"has_peps","value":"false","type":"text"},{"key":"corporate_phone","value":"+1-212-555-1234","type":"text"},{"key":"customer_service_phone","value":"+1-212-555-5678","type":"text"},{"key":"business_type","value":"LLC","type":"text"},{"key":"business_number","value":"98-7654321","type":"text"},{"key":"company_websites","value":"https://www.mybusiness.com","type":"text"},{"key":"marketing_websites","value":"https://www.mybusinesspromo.com","type":"text"},{"key":"submitter_first_name","value":"John","type":"text"},{"key":"submitter_last_name","value":"Doe","type":"text"},{"key":"submitter_email","value":"omes@gmail.com","type":"text"},{"key":"articles_of_incorporation","type":"file","src":"/Users/yasserlluberes/Desktop/A - invoice - christian.pdf"},{"key":"shareholder_register","type":"file","src":"/path/to/shareholder_register.pdf"},{"key":"certificate_of_incorporation","type":"file","src":"/path/to/certificate_of_incorporation.pdf"},{"key":"certificate_of_good_standing","type":"file","src":"/path/to/certificate_of_good_standing.pdf"},{"key":"business_description_letter","type":"file","src":"/path/to/business_description_letter.pdf"},{"key":"last_three_bank_statements","type":"file","src":"/path/to/last_three_bank_statements.pdf"},{"key":"proof_of_business_address","type":"file","src":"/path/to/proof_of_business_address.pdf"},{"key":"financial_statements_or_tax_returns","type":"file","src":"/path/to/financial_statements_or_tax_returns.pdf"},{"key":"corporate_organizational_structure","type":"file","src":"/path/to/corporate_organizational_structure.pdf"},{"key":"license","type":"file","src":"/path/to/license.pdf"},{"key":"amlKycPolicies","type":"file","src":"/path/to/aml_kyc_policies.pdf"},{"key":"clientId","value":"your client id","type":"text"}]},"url":"{{apiurl}}/register/register-coorporate","description":"<h2 id=\"api-overview\">API Overview</h2>\n<p>This API endpoint is used to register a corporate entity by submitting various business-related details along with required documentation.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>{{apiurl}}/register/register-coorporate</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> <code>multipart/form-data</code></p>\n</li>\n</ul>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request body must include the following parameters:</p>\n<h4 id=\"text-parameters\">Text Parameters</h4>\n<ul>\n<li><p><strong>business_name</strong>: The official name of the business.</p>\n</li>\n<li><p><strong>trade_name</strong>: The trade name under which the business operates.</p>\n</li>\n<li><p><strong>business_address_1</strong>: The primary address of the business.</p>\n</li>\n<li><p><strong>business_address_2</strong>: Additional address information (if applicable).</p>\n</li>\n<li><p><strong>country</strong>: The country where the business is registered.</p>\n</li>\n<li><p><strong>region</strong>: The state or region of the business location.</p>\n</li>\n<li><p><strong>city</strong>: The city where the business is located.</p>\n</li>\n<li><p><strong>postal_code</strong>: The postal code for the business address.</p>\n</li>\n<li><p><strong>incorporation_date</strong>: The date when the business was incorporated.</p>\n</li>\n<li><p><strong>incorporation_country</strong>: The country of incorporation.</p>\n</li>\n<li><p><strong>is_regulated</strong>: Indicates if the business is regulated (true/false).</p>\n</li>\n<li><p><strong>is_licensed</strong>: Indicates if the business is licensed (true/false).</p>\n</li>\n<li><p><strong>nature_of_business</strong>: A brief description of the business activities.</p>\n</li>\n<li><p><strong>serviced_countries</strong>: A comma-separated list of countries serviced by the business.</p>\n</li>\n<li><p><strong>operates_in_restricted_countries</strong>: Indicates if the business operates in restricted countries (true/false).</p>\n</li>\n<li><p><strong>has_peps</strong>: Indicates if the business has Politically Exposed Persons (true/false).</p>\n</li>\n<li><p><strong>corporate_phone</strong>: The corporate contact phone number.</p>\n</li>\n<li><p><strong>customer_service_phone</strong>: The customer service contact phone number.</p>\n</li>\n<li><p><strong>business_type</strong>: The type of business entity (e.g., LLC, Corporation).</p>\n</li>\n<li><p><strong>business_number</strong>: The business registration number.</p>\n</li>\n<li><p><strong>company_websites</strong>: URLs of the company's official websites.</p>\n</li>\n<li><p><strong>marketing_websites</strong>: URLs of the company's marketing websites.</p>\n</li>\n<li><p><strong>submitter_first_name</strong>: The first name of the person submitting the registration.</p>\n</li>\n<li><p><strong>submitter_last_name</strong>: The last name of the person submitting the registration.</p>\n</li>\n<li><p><strong>submitter_email</strong>: The email address of the person submitting the registration.</p>\n</li>\n</ul>\n<h4 id=\"file-parameters\">File Parameters</h4>\n<ul>\n<li><p><strong>articles_of_incorporation</strong>: PDF file containing the articles of incorporation.</p>\n</li>\n<li><p><strong>shareholder_register</strong>: PDF file of the shareholder register.</p>\n</li>\n<li><p><strong>certificate_of_incorporation</strong>: PDF file of the certificate of incorporation.</p>\n</li>\n<li><p><strong>certificate_of_good_standing</strong>: PDF file of the certificate of good standing.</p>\n</li>\n<li><p><strong>business_description_letter</strong>: PDF file containing a business description letter.</p>\n</li>\n<li><p><strong>last_three_bank_statements</strong>: PDF file of the last three bank statements.</p>\n</li>\n<li><p><strong>proof_of_business_address</strong>: PDF file proving the business address.</p>\n</li>\n<li><p><strong>financial_statements_or_tax_returns</strong>: PDF file of financial statements or tax returns.</p>\n</li>\n<li><p><strong>corporate_organizational_structure</strong>: PDF file of the corporate organizational structure.</p>\n</li>\n<li><p><strong>license</strong>: PDF file of the business license.</p>\n</li>\n<li><p><strong>amlKycPolicies</strong>: PDF file of AML/KYC policies.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response for this API call will typically include a confirmation of registration or an error message detailing any issues encountered during the registration process. The exact structure of the response will depend on the implementation but will generally include a success indicator and any relevant error messages.</p>\n<h3 id=\"functionality\">Functionality</h3>\n<p>This API allows businesses to register by providing essential information and documentation, facilitating compliance with regulatory requirements and enabling the business to operate legally.</p>\n","urlObject":{"path":["register","register-coorporate"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"021e8fa0-90ea-429a-a930-314014d5120a"}],"id":"a3b2e88d-1d5b-4f5e-b74c-7ca1b7aebd94","_postman_id":"a3b2e88d-1d5b-4f5e-b74c-7ca1b7aebd94","description":""},{"name":"[III] Add Assets","item":[{"name":"20. [DEV_ONLY] Desposit USD","id":"bd69e422-5857-4df6-a579-c0ed3d1dbc44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\",\n\"instrument\": \"USD\",\n\"qty\": 25,\n\"cost_basis\": 1,\n\"from\": \"Treasury\",\n\"notes\": \"Dev Deposit\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/deposit","description":"<h2 id=\"add-deposit-to-portfolio\">Add Deposit to Portfolio</h2>\n<p>This is a DEVELOPMENT ONLY endpoint</p>\n<p>This endpoint allows users to add a deposit to a specified portfolio. The deposit details include the instrument type, quantity, cost basis, source of funds, and any additional notes.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>portfolio_name</strong> (string): The name of the portfolio to which the deposit is being added.</p>\n</li>\n<li><p><strong>instrument</strong> (string): The type of instrument for the deposit (e.g., currency).</p>\n</li>\n<li><p><strong>qty</strong> (number): The quantity of the instrument being deposited.</p>\n</li>\n<li><p><strong>cost_basis</strong> (number): The cost basis for the deposited quantity.</p>\n</li>\n<li><p><strong>from</strong> (string): The source from which the funds are being deposited (e.g., Treasury).</p>\n</li>\n<li><p><strong>notes</strong> (string): Any additional notes regarding the deposit.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a confirmation of the deposit addition, typically including a success message and details of the transaction. The exact structure of the response may vary, but it will generally confirm that the deposit has been processed and may include the updated portfolio balance or transaction ID.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the portfolio specified in the <code>portfolio_name</code> exists before making the request.</p>\n</li>\n<li><p>Validate all input parameters to prevent errors during processing.</p>\n</li>\n<li><p>This endpoint is typically used in financial applications where users manage their investment portfolios.</p>\n</li>\n</ul>\n","urlObject":{"path":["portfolio","deposit"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd69e422-5857-4df6-a579-c0ed3d1dbc44"},{"name":"21. [DEV_ONLY] Desposit Tokens","id":"f359df65-5c7d-4a07-9b2e-5b127a4e448f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\",\n\"instrument\": \"USDT\",\n\"qty\": 2000,\n\"cost_basis\": 1,\n\"from\": \"Treasury\",\n\"notes\": \"Dev Deposit\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/deposit","description":"<h3 id=\"add-deposit-to-portfolio\">Add Deposit to Portfolio</h3>\n<p>This is a DEVELOPMENT ONLY endpoint</p>\n<p>This endpoint allows users to add a deposit to a specified portfolio.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p>The request body must be in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>portfolio_name</strong> (string): The name of the portfolio to which the deposit is being made.</p>\n</li>\n<li><p><strong>instrument</strong> (string): The type of instrument being deposited (e.g., cryptocurrency, stock).</p>\n</li>\n<li><p><strong>qty</strong> (number): The quantity of the instrument being deposited.</p>\n</li>\n<li><p><strong>cost_basis</strong> (number): The cost basis for the instrument being deposited.</p>\n</li>\n<li><p><strong>from</strong> (string): The source from which the funds are coming (e.g., Treasury, Savings).</p>\n</li>\n<li><p><strong>notes</strong> (string): Any additional notes regarding the deposit.</p>\n</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>Upon a successful request, the API will return a confirmation of the deposit action along with relevant details about the transaction. The exact structure of the response may vary, but it will typically include information such as the transaction ID and the updated portfolio balance.</p>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>Ensure that the portfolio name provided exists in the system before making the deposit.</p>\n</li>\n<li><p>Verify that the quantity and cost basis are accurate to avoid discrepancies in the portfolio's financial records.</p>\n</li>\n</ul>\n","urlObject":{"path":["portfolio","deposit"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f359df65-5c7d-4a07-9b2e-5b127a4e448f"},{"name":"23. Get Portfolio Balances","id":"7870ee30-3401-4850-977f-a1f433c17674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/get_portfolio_balances","description":"<h3 id=\"get-portfolio-balances\">Get Portfolio Balances</h3>\n<p>Used to retrieve current balances</p>\n<p><strong>Method:</strong> <code>POST</code><br /><strong>URL:</strong> <code>{{apiurl}}/portfolio/get_portfolio_balances</code></p>\n<h4 id=\"request-headers\">Request Headers</h4>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"portfolio_name\": \"&lt;NAME_OF_PORTFOLIO&gt;\"\n}\n\n</code></pre>\n<ul>\n<li><p><strong>Parameters:</strong></p>\n<ul>\n<li>{ \"portfolio_name\": \"My Portfolio\"}</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will return an array of objects, each representing an asset in the portfolio with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"base_currency\": \"&lt;BASE_CURRENCY&gt;\",\n        \"qty\": &lt;CURRENT_QTY&gt;,\n        \"pnl\": &lt;TOTAL_PNL_FOR_THIS_SYMBOL&gt;\n    }\n]\n\n</code></pre>\n<ul>\n<li><p><strong>Fields:</strong></p>\n<ul>\n<li><p><code>base_currency</code> (string): The currency of the asset.</p>\n</li>\n<li><p><code>qty</code> (number): The current quantity of the asset.</p>\n</li>\n<li><p><code>pnl</code> (number): The total profit and loss for this asset since the portfolio was opened.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"base_currency\": \"BTC\",\n        \"qty\": 0.0,\n        \"pnl\": 7.500\n    },\n    {\n        \"base_currency\": \"USD\",\n        \"qty\": 90304.480,\n        \"pnl\": 0\n    }\n]\n\n</code></pre>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>If the asset is a currency (e.g., USD-USD), the PNL will always be zero (0).</p>\n</li>\n<li><p>The PNL is calculated across all transactions since the portfolio was opened.</p>\n</li>\n<li><p>To get the current PNL:</p>\n<ul>\n<li><p>If <code>qty = 0</code>, then <code>current_pnl = pnl</code></p>\n</li>\n<li><p>If <code>qty &gt; 0</code>, then <code>current_pnl = pnl + (qty \\* current_asset_market_price)</code></p>\n</li>\n</ul>\n</li>\n<li><p>Method: POST</p>\n</li>\n<li><p>Parameters in Body:<br />  {<br />  \"portfolio_name\": \"\"<br />  }</p>\n<ul>\n<li>Example:<br />  {<br />  \"portfolio_name\": \"Tracking\"<br />  }</li>\n</ul>\n</li>\n<li><p>Return: for each asset one entry with:<br />  {<br />  \"base_currency\": \"\",<br />  \"qty\": ,<br />  \"pnl\":<br />  }</p>\n<ul>\n<li><p>Example:<br />  [<br />  [</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  {\n      \"base_currency\": \"BTC\",\n      \"qty\": 0.0,\n      \"pnl\": 7.500\n  },\n  {\n      \"base_currency\": \"USD\",\n      \"qty\": 90304.480,\n      \"pnl\": 0\n  }\n\n</code></pre><p>  ]<br />  ]</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>If the asset is currency, such as USD-USD then the PNL will always be Zero (0).<br />The pnl is calculated across all transactions since portfolio was opened.<br />To get the current pnl do as follows:</p>\n<ul>\n<li><p>qty = 0 =&gt; current_pnl = pnl</p>\n</li>\n<li><p>qty &gt; 0 =&gt; current_pnl = (pnl)+(qty*currnet_asset_market_price)</p>\n</li>\n</ul>\n","urlObject":{"path":["portfolio","get_portfolio_balances"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7870ee30-3401-4850-977f-a1f433c17674"},{"name":"24. Get Portfolio Transactions","id":"20759627-5349-47e3-8449-379a69d48281","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/get_portfolio_transactions","description":"<h3 id=\"get-portfolio-transactions\">Get Portfolio Transactions</h3>\n<p>This API endpoint retrieves all transactions associated with a specified portfolio. Each transaction is returned individually.</p>\n<h4 id=\"method\">Method</h4>\n<p><code>POST</code></p>\n<h4 id=\"request-headers\">Request Headers</h4>\n<ul>\n<li><code>Content-Type</code>: <code>application/json</code> (specifies the media type of the resource)</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and include the following parameter:</p>\n<ul>\n<li><p><strong>portfolio_name</strong> (string): The name of the portfolio for which transactions are being requested.</p>\n<ul>\n<li>{ \"portfolio_name\": \"My Portfolio\"}</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain an array of transaction objects, each representing a transaction associated with the specified portfolio. The structure of each transaction object is as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"portfolio_id\": \"&lt;PORTFOLIO_ID&gt;\",\n  \"qty\": &lt;QUANTITY&gt;,\n  \"symbol\": \"&lt;SYMBOL&gt;\",\n  \"transaction_id\": &lt;TRANSACTION_ID&gt;,\n  \"price\": &lt;PRICE&gt;,\n  \"from\": \"&lt;FROM_ACCOUNT_ID&gt;\",\n  \"to\": \"&lt;TO_ACCOUNT_ID&gt;\",\n  \"transaction_type\": \"&lt;TRANSACTION_TYPE&gt;\",\n  \"data\": {},\n  \"base_currency\": \"&lt;BASE_CURRENCY&gt;\"\n}\n\n</code></pre>\n<h4 id=\"example-response\">Example Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"portfolio_id\": \"b0d40b46-adb8-420d-8158-6493ca1d29b3\",\n    \"qty\": 1.5,\n    \"symbol\": \"BTC-USD\",\n    \"transaction_id\": 213578159726241,\n    \"price\": 3231.34,\n    \"from\": \"7c2f55ac-571c-46a1-a780-37df9b36e203\",\n    \"to\": \"b0d40b46-adb8-420d-8158-6493ca1d29b3\",\n    \"transaction_type\": \"BUY\",\n    \"data\": {},\n    \"base_currency\": \"BTC\"\n  }\n]\n\n</code></pre>\n<p>This endpoint is useful for tracking the performance and history of transactions within a specific portfolio.</p>\n","urlObject":{"path":["portfolio","get_portfolio_transactions"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20759627-5349-47e3-8449-379a69d48281"}],"id":"11b378f0-8b17-4a39-98db-e13e5c21833e","_postman_id":"11b378f0-8b17-4a39-98db-e13e5c21833e","description":""},{"name":"25. Logout","id":"1157704d-87fb-4239-b662-deac55911cd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/logout","urlObject":{"path":["logout"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1157704d-87fb-4239-b662-deac55911cd6"}],"id":"cd440716-cb0d-4f75-b86b-b817ce4ac879","description":"<p>All interactions with the system, past the iniital registration, require a registered user. This applies to:</p>\n<ul>\n<li><p>Administrators setting Up a Payment Company or Entity</p>\n</li>\n<li><p>Content or Service Providers</p>\n</li>\n<li><p>Clients who will purchase or subscribe to products</p>\n</li>\n</ul>\n<p>The registration is a three step process:</p>\n<ol>\n<li><p>Register the User (Register)</p>\n</li>\n<li><p>Validate the Phone Number (Confirm to Send a code + Validate to validate the code)</p>\n</li>\n<li><p>Validate the Email (Confirm to Send a code + Validate to validate the code)</p>\n</li>\n</ol>\n<p>Once the Email and Phone are validated, everytime the user logs in there is a 2FA process to validate the loogin, with SMS being the default method to receive the code. The code is always validated using the Validae method.</p>\n<p>This is a guided set of calls to get a basic workign environment.</p>\n","_postman_id":"cd440716-cb0d-4f75-b86b-b817ce4ac879"},{"name":"SECURITY","item":[{"name":"SMS","item":[{"name":"Send 2FA Code via SMS","id":"d878d1a7-880d-4b03-9794-5baa910f31bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/register/confirmPhone","description":"<h2 id=\"confirm-phone-registration\">Confirm Phone Registration</h2>\n<p>This endpoint is used to confirm a user's phone registration. It is a POST request sent to <code>{{apiurl}}/register/confirmPhone</code>.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must include the following parameters:</p>\n<ul>\n<li><p><strong>phoneNumber</strong> (text): The phone number that needs to be confirmed.</p>\n</li>\n<li><p><strong>confirmationCode</strong> (text): The code sent to the user's phone for verification.</p>\n</li>\n</ul>\n<h3 id=\"response-format\">Response Format</h3>\n<p>Upon successful confirmation, the API will return a response indicating the success of the operation. The expected response will typically include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates the success or failure of the confirmation process.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional information about the confirmation status.</p>\n</li>\n</ul>\n<p>Make sure to provide valid values for the phone number and confirmation code to ensure successful processing of the request.</p>\n","urlObject":{"path":["register","confirmPhone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d878d1a7-880d-4b03-9794-5baa910f31bc"},{"name":"Validate SMS Code","id":"a9dc40f1-c89b-4bb9-b9e7-39519036d50f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\":\"86138915\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validatePhone","description":"<h2 id=\"validate-phone-registration\">Validate Phone Registration</h2>\n<p>This endpoint is used to validate a phone number during the registration process. It checks if the provided verification code is correct for the specified phone number.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><strong>Method</strong>: <code>POST</code></li>\n<li><strong>Endpoint</strong>: <code>{{apiurl}}/register/validatePhone</code></li>\n<li><strong>Content-Type</strong>: <code>application/json</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be a JSON object containing the following parameter:</p>\n<ul>\n<li><strong>code</strong> (string): The verification code sent to the user's phone number for validation.</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"86138915\"\n}\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The expected response format is typically a JSON object indicating the success or failure of the validation process. The specific structure of the response will depend on the implementation, but it generally includes information about whether the validation was successful and any relevant messages.</p>\n<h3 id=\"notes\">Notes</h3>\n<p>Ensure that the verification code is valid and corresponds to the phone number being registered. Invalid codes will result in a failure response.</p>\n","urlObject":{"path":["register","validatePhone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9dc40f1-c89b-4bb9-b9e7-39519036d50f"},{"name":"Send 2FA Code via SMS - Not logedin","id":"772f5f3d-5efd-48cb-b1de-b21c1e28ce2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\":\"82167826\",\n    \"send_to\": \"+12122561693\",\n    \"language\": \"eng\",\n    \"code_validation\": \"dq322\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validatePhoneUnsigned","description":"<h2 id=\"validate-phone-unsigned\">Validate Phone Unsigned</h2>\n<p>This endpoint is used to validate a phone number during the registration process. It checks the provided verification code against the one sent to the specified phone number.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request must be sent as a JSON object in the body with the following parameters:</p>\n<ul>\n<li><strong>code</strong> (string): The verification code that the user has received. This code is required for validation.</li>\n<li><strong>send_to</strong> (string): The phone number to which the verification code was sent. It should be in international format.</li>\n<li><strong>language</strong> (string): The language preference for the response. This can be used to localize messages.</li>\n<li><strong>code_validation</strong> (string): A unique identifier for the validation request, which may be used for tracking or auditing purposes.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful validation, the server will respond with a confirmation of the validation status. The response will typically include:</p>\n<ul>\n<li>A success message indicating that the phone number has been validated.</li>\n<li>Any relevant details or errors if the validation fails.</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the phone number is correctly formatted and that the verification code matches the one sent to the specified number.</li>\n<li>The language parameter can help in providing a localized response, so it is recommended to specify it according to user preference.</li>\n</ul>\n","urlObject":{"path":["register","validatePhoneUnsigned"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"772f5f3d-5efd-48cb-b1de-b21c1e28ce2b"},{"name":"Validate SMS Code - Not logedin","id":"506e26e1-3b4f-4bc6-8385-783439eb241f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sendto\": \"+19086359385\",\n    \"language\": \"eng\",\n    \"code_validation\": \"2oj201\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/confirmPhoneUnsigned","description":"<h2 id=\"confirm-phone-unsigned\">Confirm Phone Unsigned</h2>\n<p>This endpoint is used to confirm a user's phone number during the registration process. It sends a validation code to the specified phone number, allowing the user to verify their contact information.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/register/confirmPhoneUnsigned</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>sendto</strong> (string): The phone number to which the validation code will be sent. It must be in a valid format, including the country code.</p>\n</li>\n<li><p><strong>language</strong> (string): The language in which the validation message should be sent. Common values include \"eng\" for English.</p>\n</li>\n<li><p><strong>code_validation</strong> (string): The validation code that the user needs to confirm their phone number.</p>\n</li>\n</ul>\n<h4 id=\"example-request-body\">Example Request Body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"sendto\": \"+19086359385\",\n  \"language\": \"eng\",\n  \"code_validation\": \"2oj201\"\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon a successful request, the API will return a response indicating the status of the phone confirmation process. The structure of the response typically includes:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates whether the confirmation was successful or if there was an error.</p>\n</li>\n<li><p><strong>message</strong> (string): A descriptive message providing additional information about the status.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Phone number confirmed successfully.\"\n}\n\n</code></pre>\n<p>This endpoint is crucial for ensuring that users have access to the phone number they provided, enhancing the security and integrity of the registration process.</p>\n","urlObject":{"path":["register","confirmPhoneUnsigned"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"506e26e1-3b4f-4bc6-8385-783439eb241f"},{"name":"Send User sms 2fa Code","id":"0057b17e-62d9-418b-bed3-8133ed49693e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/register/send_2fa_code","description":"<h2 id=\"api-endpoint-send-2fa-code\">API Endpoint: Send 2FA Code</h2>\n<h3 id=\"method\">Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint is used to send a Two-Factor Authentication (2FA) code to a user during the registration process. It is an essential security measure to ensure that the user is verified.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request body must include the following parameters:</p>\n<ul>\n<li><p><strong>email</strong> (text): The email address of the user to whom the 2FA code will be sent.</p>\n</li>\n<li><p><strong>phone_number</strong> (text): The phone number of the user, if applicable, for sending the 2FA code via SMS.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon a successful request, the server will respond with a status indicating the outcome of the operation. The response will typically include:</p>\n<ul>\n<li><p><strong>status</strong>: Indicates whether the request was successful or failed.</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional information about the request status.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"2FA code sent successfully.\"\n}\n\n</code></pre>\n<p>Ensure that all required parameters are included in the request body to receive the expected response.</p>\n","urlObject":{"path":["register","send_2fa_code"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0057b17e-62d9-418b-bed3-8133ed49693e"}],"id":"cb689ae2-09f3-4117-9bd0-a59865ac0eca","_postman_id":"cb689ae2-09f3-4117-9bd0-a59865ac0eca","description":""},{"name":"EMAIL","item":[{"name":"Send 2FA Code via Email","id":"70f21ac9-b780-4033-9559-d54f84f311b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/confirmEmail","description":"<h2 id=\"confirm-email-registration\">Confirm Email Registration</h2>\n<p>This endpoint is used to confirm a user's email address during the registration process. It is typically called after a user has registered and received a confirmation email containing a unique token.</p>\n<h3 id=\"request-format\">Request Format</h3>\n<p>The request must be sent as a <code>POST</code> request to the endpoint <code>{{apiurl}}/register/confirmEmail</code>. The body of the request should be formatted as <code>application/x-www-form-urlencoded</code> and must include the following parameters:</p>\n<ul>\n<li><p><strong>token</strong> (string): The unique token sent to the user's email address for verification.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the user who is confirming their registration.</p>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-plaintext\">token=your_unique_token\nemail=user@example.com\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successful confirmation of the email, the API will respond with a JSON object containing the following fields:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the email confirmation was successful.</p>\n</li>\n<li><p><strong>message</strong> (string): A message providing additional information about the result of the confirmation process.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Email confirmed successfully.\"\n}\n\n</code></pre>\n<p>In case of an error, the response will also include a <code>success</code> field set to <code>false</code> and an appropriate error message detailing the issue.</p>\n","urlObject":{"path":["register","confirmEmail"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70f21ac9-b780-4033-9559-d54f84f311b4"},{"name":"Validate Email Code","id":"fe00297d-7874-4fc2-93d0-c488266d04ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\":88089780\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validateEmail","description":"<h3 id=\"validate-email-endpoint\">Validate Email Endpoint</h3>\n<p>This endpoint is used to validate an email registration by checking a unique code provided by the user.</p>\n<ul>\n<li><p><strong>HTTP Method</strong>: <code>POST</code></p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/register/validateEmail</code></p>\n</li>\n</ul>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p>The request requires a JSON payload containing the following parameter:</p>\n<ul>\n<li><strong>code</strong> (integer): A unique code sent to the user's email for validation. This code must be provided in the request body.</li>\n</ul>\n<h4 id=\"request-body-example\">Request Body Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 88089780\n}\n\n</code></pre>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>Upon successful validation, the server will respond with a confirmation message indicating whether the email validation was successful or not. The response will typically be in JSON format, containing a status and any relevant messages.</p>\n<p>Ensure that the correct code is provided to receive the appropriate validation response.</p>\n","urlObject":{"path":["register","validateEmail"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe00297d-7874-4fc2-93d0-c488266d04ff"},{"name":"Send 2FA Code via Email  - Not logedin","id":"3507d88a-eaf5-4eb5-b0aa-7df570c424c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sendto\": \"dbaez@bloxcross.com\",\n    \"language\": \"eng\",\n    \"code_validation\": \"2oj201\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/confirmEmailUnsigned","description":"<h3 id=\"confirm-email-request\">Confirm Email Request</h3>\n<p>This endpoint is used to confirm a user's email address during the registration process. It is typically called after a user has initiated the registration and received a confirmation code via email.</p>\n<h4 id=\"request-format\">Request Format</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/register/confirmEmailUnsigned</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body should be in JSON format and contain the following parameters:</p>\n<ul>\n<li><p><strong>sendto</strong> (string): The email address to which the confirmation code was sent.</p>\n</li>\n<li><p><strong>language</strong> (string): The language preference of the user (e.g., \"eng\" for English).</p>\n</li>\n<li><p><strong>code_validation</strong> (string): The validation code that the user needs to confirm their email.</p>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"sendto\": \"user@example.com\",\n  \"language\": \"eng\",\n  \"code_validation\": \"your_validation_code\"\n}\n\n</code></pre>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon successful email confirmation, the server will respond with a JSON object indicating the result of the operation. The exact structure of the response may vary, but it generally includes fields indicating success or failure, along with any relevant messages or data.</p>\n<p><strong>Expected Response Example:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Email confirmed successfully.\"\n}\n\n</code></pre>\n<p>In case of an error, the response will include an error message detailing the issue encountered during the confirmation process.</p>\n<p>Make sure to handle the response appropriately based on the success or failure of the email confirmation.</p>\n","urlObject":{"path":["register","confirmEmailUnsigned"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3507d88a-eaf5-4eb5-b0aa-7df570c424c4"},{"name":"Validate Email Code - Not logedin","id":"9b0bb807-954c-474e-bb6c-df2b80ed7da8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"10589715\",\n    \"send_to\": \"dbaez@bloxcross.com\",\n    \"language\": \"eng\",\n    \"code_validation\": \"dq322\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validateEmailUnsigned","description":"<h2 id=\"validate-email-unsigned\">Validate Email Unsigned</h2>\n<p>This endpoint is used to validate an email address during the registration process. It checks the provided code against the system to ensure that the email can be processed further.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><strong>POST</strong></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>{{apiurl}}/register/validateEmailUnsigned</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>code</strong> (string): A unique code associated with the email validation process.</p>\n</li>\n<li><p><strong>send_to</strong> (string): The email address to which the validation code is sent.</p>\n</li>\n<li><p><strong>language</strong> (string): The language preference for the validation message.</p>\n</li>\n<li><p><strong>code_validation</strong> (string): A secondary code used for validation purposes.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The response will typically include a status indicating the success or failure of the email validation process. The exact structure of the response may vary, but it will generally provide feedback on whether the validation was successful.</p>\n<p>Make sure to provide valid data for each parameter to ensure the request is processed correctly.</p>\n","urlObject":{"path":["register","validateEmailUnsigned"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b0bb807-954c-474e-bb6c-df2b80ed7da8"}],"id":"666302a8-39d4-47f8-ad27-729e8cc1949a","_postman_id":"666302a8-39d4-47f8-ad27-729e8cc1949a","description":""},{"name":"GAUTH","item":[{"name":"Validate Authenticator code","id":"27513387-a2a4-4246-9149-a7b2035c2d2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"98423704\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/validate_2fa_code","description":"<h2 id=\"validate-2fa-code\">Validate 2FA Code</h2>\n<p>This endpoint is used to validate a two-factor authentication (2FA) code provided by the user during the registration process.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>code</strong> (string): The 2FA code entered by the user. This code is typically generated by an authentication app or sent via SMS.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful validation of the 2FA code, the response will indicate whether the code is valid. The exact structure of the response will depend on the implementation, but it generally includes a success message or an error message if the code is invalid.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the 2FA code is entered correctly and is still valid, as these codes often have a time limit.</p>\n</li>\n<li><p>This endpoint is a critical step in the registration process to enhance security.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","validate_2fa_code"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27513387-a2a4-4246-9149-a7b2035c2d2c"},{"name":"Generate 2FA Auth QR","id":"5caae1d0-c220-4562-bdc3-aac4baeb1354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/register/gen_2fa_qrcode","description":"<h2 id=\"generate-2fa-qr-code\">Generate 2FA QR Code</h2>\n<p>This endpoint generates a QR code for two-factor authentication (2FA) setup. It is typically used during the registration or account setup process to enhance security by requiring a second form of verification.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><strong>None</strong>: This endpoint does not require any request parameters.</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the server will respond with a QR code image that can be scanned by a 2FA application. The response will typically include:</p>\n<ul>\n<li><strong>qr_code</strong>: A string representation of the QR code image, which can be displayed or downloaded by the user.</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the user has a compatible 2FA application installed to scan the QR code.</p>\n</li>\n<li><p>This endpoint is crucial for enhancing account security and should be implemented during user registration or security settings updates.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","gen_2fa_qrcode"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5caae1d0-c220-4562-bdc3-aac4baeb1354"},{"name":"Generate 2FA QR with Email Code","id":"eec6cdb0-ed1d-4553-8679-9c5e366779ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": 88089780\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/gen_2fa_qrcode_with_emailcode","description":"<h2 id=\"endpoint-generate-2fa-qr-code-with-email-code\">Endpoint: Generate 2FA QR Code with Email Code</h2>\n<p>This endpoint allows users to generate a Two-Factor Authentication (2FA) QR code using a provided email verification code. It is typically used during the setup of 2FA to enhance account security.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/register/gen_2fa_qrcode_with_emailcode</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<ul>\n<li><strong>code</strong> (integer): The email verification code that the user has received. This code is essential for validating the user's identity before generating the QR code.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 88089780\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the response will typically include a QR code in a specified format, which the user can scan to complete the 2FA setup. The exact structure of the response body will depend on the implementation but will generally include:</p>\n<ul>\n<li><p>A success status indicating the QR code was generated successfully.</p>\n</li>\n<li><p>The QR code data or URL that can be used to display the QR code.</p>\n</li>\n</ul>\n<p>Make sure to handle any potential errors that may arise, such as invalid or expired codes, to ensure a smooth user experience.</p>\n","urlObject":{"path":["register","gen_2fa_qrcode_with_emailcode"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eec6cdb0-ed1d-4553-8679-9c5e366779ae"},{"name":"Generate 2FA QR with SMS Code","id":"8afa74cb-6ba8-4225-ba7e-70cc02c5b5e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": 49158327\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/gen_2fa_qrcode_with_smscode","description":"<h3 id=\"endpoint-post-registergen_2fa_qrcode_with_smscode\">Endpoint: <code>POST /register/gen_2fa_qrcode_with_smscode</code></h3>\n<p>This endpoint is used to generate a two-factor authentication (2FA) QR code using a provided SMS code. It enhances the security of user accounts by requiring a second form of verification during the login process.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request must contain a JSON object with the following parameter:</p>\n<ul>\n<li><strong>code</strong> (integer): The SMS code sent to the user for verification. This code is required to generate the 2FA QR code.</li>\n</ul>\n<h5 id=\"example-request-body\">Example Request Body</h5>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 49158327\n}\n\n</code></pre>\n<h4 id=\"response-structure\">Response Structure</h4>\n<p>Upon a successful request, the response will typically include a QR code representation that can be scanned by an authentication app. The exact structure of the response may vary, but it generally contains the necessary information to complete the 2FA setup.</p>\n<p>Make sure to handle any errors appropriately, as the request may fail if the provided code is incorrect or expired.</p>\n","urlObject":{"path":["register","gen_2fa_qrcode_with_smscode"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8afa74cb-6ba8-4225-ba7e-70cc02c5b5e9"},{"name":"Always On 2FA","id":"380002d1-89c7-42da-b302-502219dbe58d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/always_on_2fa","description":"<h2 id=\"endpoint-register-always-on-2fa\">Endpoint: Register Always On 2FA</h2>\n<p>This endpoint allows users to enable the \"Always On\" two-factor authentication (2FA) feature for their accounts. By using this endpoint, users can enhance the security of their accounts by ensuring that 2FA is always required for login.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request must be sent as <code>x-www-form-urlencoded</code> and includes the following parameters:</p>\n<ul>\n<li><p><strong>user_id</strong> (text): The unique identifier for the user who is enabling the \"Always On\" 2FA.</p>\n</li>\n<li><p><strong>method</strong> (text): The method of two-factor authentication to be used (e.g., SMS, email, authenticator app).</p>\n</li>\n<li><p><strong>enabled</strong> (text): A flag indicating whether the 2FA feature should be enabled (typically set to 'true').</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful execution, the API will return a response indicating the status of the request. The response will include:</p>\n<ul>\n<li><p><strong>status</strong>: A string indicating the success or failure of the operation (e.g., \"success\" or \"error\").</p>\n</li>\n<li><p><strong>message</strong>: A descriptive message providing additional context about the operation (e.g., confirmation of 2FA being enabled).</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the user ID provided is valid and corresponds to an existing user in the system.</p>\n</li>\n<li><p>The method specified must be supported by the system for two-factor authentication.</p>\n</li>\n<li><p>This feature is intended for users who want to enforce an additional layer of security consistently.</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately based on the status returned to provide feedback to the user.</p>\n","urlObject":{"path":["register","always_on_2fa"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"380002d1-89c7-42da-b302-502219dbe58d"},{"name":"Decline 2FA","id":"f3aa4bc1-176c-4ab5-bea6-b5dc0e69a01d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/decline_2fa","description":"<h2 id=\"decline-two-factor-authentication-2fa-request\">Decline Two-Factor Authentication (2FA) Request</h2>\n<p>This endpoint allows users to decline the two-factor authentication (2FA) process during registration. This action can be useful for users who prefer not to enable 2FA for their accounts at this stage.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/register/decline_2fa</code></p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<p>The request body should be formatted as <code>x-www-form-urlencoded</code> or <code>form-data</code> and must include the following parameters:</p>\n<ul>\n<li><p><code>user_id</code> (text): The unique identifier of the user who is declining the 2FA.</p>\n</li>\n<li><p><code>reason</code> (text): A brief explanation of why the user is declining the 2FA.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successfully processing the request, the server will return a response indicating the result of the operation.</p>\n<h4 id=\"response-structure\">Response Structure</h4>\n<ul>\n<li><p><strong>status</strong> (string): Indicates whether the request was successful or if there was an error.</p>\n</li>\n<li><p><strong>message</strong> (string): Provides additional information about the outcome of the request.</p>\n</li>\n</ul>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"message\": \"Two-factor authentication has been declined.\"\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the <code>user_id</code> provided corresponds to a valid user in the system.</p>\n</li>\n<li><p>The <code>reason</code> parameter is optional but recommended for better user feedback and support.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","decline_2fa"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3aa4bc1-176c-4ab5-bea6-b5dc0e69a01d"}],"id":"26a0353e-a5c4-4575-841a-98ca7e3b5626","_postman_id":"26a0353e-a5c4-4575-841a-98ca7e3b5626","description":""},{"name":"ADMIN","item":[{"name":"Change Password","id":"b3e14a58-f178-46d8-892a-96adadb47322","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"current_password\":\"XT6#01923ksa\",\n    \"new_password\":\"My$tandard69\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/change_pwd","description":"<h3 id=\"change-password-api\">Change Password API</h3>\n<p>This endpoint allows users to change their password. It requires the current password and the new password to be provided in the request body.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>{{apiurl}}/register/change_pwd</code></p>\n</li>\n<li><p><strong>Content-Type:</strong> application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body-parameters\">Request Body Parameters</h4>\n<ul>\n<li><p><strong>current_password</strong> (string): The user's current password. This is required to authenticate the user's request for changing the password.</p>\n</li>\n<li><p><strong>new_password</strong> (string): The new password that the user wishes to set. This should meet any security requirements specified by the application (e.g., length, complexity).</p>\n</li>\n</ul>\n<h4 id=\"expected-response\">Expected Response</h4>\n<p>On a successful password change, the API will return a response indicating the success of the operation. The exact structure of the response may vary based on implementation but typically includes a status message.</p>\n<h4 id=\"notes\">Notes</h4>\n<ul>\n<li><p>Ensure that the new password is secure and meets the application’s password policy.</p>\n</li>\n<li><p>If the current password is incorrect, the API will respond with an error message indicating the failure.</p>\n</li>\n<li><p>It is advisable to handle errors gracefully in the application to inform users of any issues during the password change process.</p>\n</li>\n</ul>\n","urlObject":{"path":["register","change_pwd"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3e14a58-f178-46d8-892a-96adadb47322"},{"name":"Change Phone","id":"db0ccb3c-d160-4056-80e6-20b0df222ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"new_phone\":\"+12122561693\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/change_phone","description":"<p>Reset phone verified flag. Need to verify.</p>\n","urlObject":{"path":["register","change_phone"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db0ccb3c-d160-4056-80e6-20b0df222ba2"},{"name":"Change Email","id":"7c756bf1-c64c-4162-8f80-d7902243b25e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"new_email\":\"me@last.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/change_email","description":"<p>Reset email verified flag. Need to verify.</p>\n","urlObject":{"path":["register","change_email"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c756bf1-c64c-4162-8f80-d7902243b25e"},{"name":"Lost Password","id":"58e27f08-3006-43e8-8d2a-a6ae95714078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\":\"me@last.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/lost_pwd","description":"<h2 id=\"endpoint-register-lost-password\">Endpoint: Register Lost Password</h2>\n<p>This endpoint allows users to initiate the process of recovering their lost password by providing their registered email address. Upon successful submission, the system will typically send a password reset link or further instructions to the provided email.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/register/lost_pwd</code></p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<ul>\n<li><code>email</code> (string): The email address associated with the user's account. This is required for the password recovery process.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"email\": \"user@example.com\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The response structure will vary based on the success or failure of the request. Generally, you can expect the following:</p>\n<ul>\n<li><p><strong>Success Response</strong>: A confirmation message indicating that an email has been sent for password recovery.</p>\n</li>\n<li><p><strong>Error Response</strong>: An error message detailing the reason for the failure, such as an invalid email address or if the email is not registered.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the email provided is valid and corresponds to an existing account to receive the password reset instructions.</p>\n</li>\n<li><p>The response will be in JSON format, providing clarity on the outcome of the request.</p>\n</li>\n</ul>\n<p>This endpoint is crucial for user account management and security, enabling users to regain access to their accounts in case they forget their passwords.</p>\n","urlObject":{"path":["register","lost_pwd"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58e27f08-3006-43e8-8d2a-a6ae95714078"},{"name":"Register Device-App ID","id":"b749ff9e-c23b-4c8c-be4d-89e3788606de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n   \"uuid\": \"uuid\",\n   \"token\": \"token2\",\n   \"device_model\": \"My iphone\" \n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/client/register_device_app","description":"<h2 id=\"register-device-application\">Register Device Application</h2>\n<p>This endpoint allows clients to register a device application with the server. The registration process requires specific device information to be sent in the request body.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<p><strong>POST</strong></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>{{apiurl}}/client/register_device_app</code></p>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>uuid</strong> (string): A unique identifier for the device.</p>\n</li>\n<li><p><strong>token</strong> (string): A token associated with the device for authentication purposes.</p>\n</li>\n<li><p><strong>device_model</strong> (string): The model of the device being registered.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon successful registration, the server will respond with a confirmation message or status indicating the result of the registration process. The exact structure of the response will depend on the implementation but typically includes a success flag and any relevant messages.</p>\n<p>Ensure that all parameters are provided correctly to avoid errors during the registration process.</p>\n","urlObject":{"path":["client","register_device_app"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b749ff9e-c23b-4c8c-be4d-89e3788606de"},{"name":"Change Name","id":"89c75441-7a82-42e0-9002-16eef0c0d06d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"fname\": \"Jack\",\n    \"lname\": \"Reacher\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/client/update_name","description":"<h2 id=\"update-client-name\">Update Client Name</h2>\n<p>This endpoint allows you to update the first and last name of a client in the system.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/client/update_name</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and should contain the following parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fname</code></td>\n<td>string</td>\n<td>The first name of the client.</td>\n</tr>\n<tr>\n<td><code>lname</code></td>\n<td>string</td>\n<td>The last name of the client.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-request\">Example Request</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"fname\": \"Jack\",\n  \"lname\": \"Reacher\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful execution, the API will return a response indicating the status of the update operation. The expected response structure may include:</p>\n<ul>\n<li><p>A success message confirming the name update.</p>\n</li>\n<li><p>Any relevant error messages if the update fails.</p>\n</li>\n</ul>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that both <code>fname</code> and <code>lname</code> are provided in the request body.</p>\n</li>\n<li><p>The names should not contain any special characters that are not allowed by the system.</p>\n</li>\n<li><p>This endpoint is intended for client name updates only; other client details should be updated using their respective endpoints.</p>\n</li>\n</ul>\n","urlObject":{"path":["client","update_name"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89c75441-7a82-42e0-9002-16eef0c0d06d"},{"name":"Delete Account","id":"2d5e54e4-6621-4d22-9c99-d4028d25b5f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"52020153\",\n    \"notes\": \"Tired of this!\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/client/delete_account","description":"<h2 id=\"delete-account-endpoint\">Delete Account Endpoint</h2>\n<p>This endpoint allows clients to delete their accounts from the system. It requires a specific code to identify the account to be deleted and an optional notes field for any additional comments regarding the account deletion.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method:</strong> POST</p>\n</li>\n<li><p><strong>URL:</strong> <code>{{apiurl}}/client/delete_account</code></p>\n</li>\n<li><p><strong>Request Body:</strong></p>\n<ul>\n<li><p><code>code</code> (string, required): A unique identifier for the account that is to be deleted. This code is essential for processing the deletion request.</p>\n</li>\n<li><p><code>notes</code> (string, optional): A field where users can provide feedback or reasons for account deletion. This can help the service improve its offerings.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"52020153\",\n  \"notes\": \"Tired of this!\"\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful deletion of the account, the API will return a response indicating the status of the operation. The response will typically include a success message or confirmation that the account has been deleted.</p>\n<h3 id=\"notes-for-users\">Notes for Users</h3>\n<ul>\n<li><p>Ensure that the code provided is accurate, as it directly correlates to the account being deleted.</p>\n</li>\n<li><p>The notes field is optional but can be beneficial for the service's understanding of user experiences and reasons for leaving.</p>\n</li>\n<li><p>Once an account is deleted, this action is usually irreversible. Please proceed with caution.</p>\n</li>\n</ul>\n","urlObject":{"path":["client","delete_account"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d5e54e4-6621-4d22-9c99-d4028d25b5f4"},{"name":"Deactivate Account","id":"bc26f2d5-a604-4629-9062-bc80c7697557","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"code\": \"52020153\",\n    \"notes\": \"Tired of this!\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/client/deactivate_account","description":"<h2 id=\"deactivate-account-endpoint\">Deactivate Account Endpoint</h2>\n<p>This endpoint allows clients to deactivate their account. It requires a POST request to the specified URL.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>code</strong> (string): A unique identifier for the account that is being deactivated. This code is essential for verifying the account to be deactivated.</p>\n</li>\n<li><p><strong>notes</strong> (string): An optional field where users can provide feedback or reasons for deactivating their account. This can help the service improve its offerings.</p>\n</li>\n</ul>\n<h3 id=\"request-body-example\">Request Body Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": \"52020153\",\n  \"notes\": \"Tired of this!\"\n}\n\n</code></pre>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon successful deactivation of the account, the server will return a response indicating the status of the operation. The response typically includes confirmation of the account deactivation and may contain additional information or instructions.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the account code provided is accurate to avoid errors in the deactivation process.</p>\n</li>\n<li><p>Providing notes is optional but can be beneficial for service improvement.</p>\n</li>\n</ul>\n","urlObject":{"path":["client","deactivate_account"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc26f2d5-a604-4629-9062-bc80c7697557"}],"id":"6dd25ffd-9fe7-45fd-97ac-40ac8168fed2","_postman_id":"6dd25ffd-9fe7-45fd-97ac-40ac8168fed2","description":""},{"name":"LOGIN","event":[{"listen":"test","script":{"id":"0f5f18fd-131b-46c1-9275-4e6777255de4","exec":["var res = JSON.parse(responseBody);","pm.environment.set('token', res.access_token);","pm.environment.set('bearer token', res.access_token);"],"type":"text/javascript","packages":{}}}],"id":"a85a57a0-06de-447f-975a-867ee00f7dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{BREX-TOKEN}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-API-KEY","value":"{{company_api_key}}"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"baezd@yahoo.com\",\r\n  \"password\": \"My$tandard15\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/login","urlObject":{"path":["login"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a85a57a0-06de-447f-975a-867ee00f7dee"},{"name":"LOGOUT","id":"fd662999-28ab-4dd3-b720-8c0d31255de7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/logout","urlObject":{"path":["logout"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd662999-28ab-4dd3-b720-8c0d31255de7"}],"id":"5a03e1ff-e4cf-439b-a202-fbeb3646b439","description":"<p>Security related Endpoints</p>\n","_postman_id":"5a03e1ff-e4cf-439b-a202-fbeb3646b439"},{"name":"ACCOUNTS","item":[{"name":"CORPORATE","item":[{"name":"BASE ACCOUNT","item":[{"name":"register-coorporate-with-data","id":"9dde2caf-bdf2-4654-96cf-ca27f7c0f408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"business_name","value":"My Business Name","type":"text"},{"key":"trade_name","value":"My Trade Name","type":"text"},{"key":"business_address_1","value":"123 Main St","type":"text"},{"key":"business_address_2","value":"Suite 400","type":"text"},{"key":"country","value":"US","type":"text"},{"key":"region","value":"NY","type":"text"},{"key":"city","value":"New York","type":"text"},{"key":"postal_code","value":"10001","type":"text"},{"key":"incorporation_date","value":"2020-05-15","type":"text"},{"key":"incorporation_country","value":"US","type":"text"},{"key":"is_regulated","value":"true","type":"text"},{"key":"is_licensed","value":"false","type":"text"},{"key":"nature_of_business","value":"Technology Services","type":"text"},{"key":"serviced_countries","value":"US,CA,MX","type":"text"},{"key":"operates_in_restricted_countries","value":"false","type":"text"},{"key":"has_peps","value":"false","type":"text"},{"key":"corporate_phone","value":"+1-212-555-1234","type":"text"},{"key":"customer_service_phone","value":"+1-212-555-5678","type":"text"},{"key":"business_type","value":"LLC","type":"text"},{"key":"business_number","value":"98-7654321","type":"text"},{"key":"company_websites","value":"https://www.mybusiness.com","type":"text"},{"key":"marketing_websites","value":"https://www.mybusinesspromo.com","type":"text"},{"key":"submitter_first_name","value":"John","type":"text"},{"key":"submitter_last_name","value":"Doe","type":"text"},{"key":"submitter_email","value":"john.doe@mybusiness.com","type":"text"},{"key":"articles_of_incorporation","type":"file","src":"/Users/yasserlluberes/main.py"},{"key":"shareholder_register","type":"file","src":"/Users/yasserlluberes/mock-data-business/SHAREHOLDER_REGISTER.txt"},{"key":"certificate_of_incorporation","type":"file","src":"/Users/yasserlluberes/mock-data-business/CERTIFICATE_OF_INCORPORATION.txt"},{"key":"certificate_of_good_standing","type":"file","src":"/Users/yasserlluberes/mock-data-business/CERTIFICATE_OF_GOOD_STANDING.txt"},{"key":"business_description_letter","type":"file","src":"/Users/yasserlluberes/mock-data-business/BUSINESS_DESCRIPTION_LETTER.txt"},{"key":"last_three_bank_statements","type":"file","src":"/Users/yasserlluberes/mock-data-business/LAST_THREE_BANK_STATEMENTS.txt"},{"key":"proof_of_business_address","type":"file","src":"/Users/yasserlluberes/mock-data-business/PROOF_OF_BUSINESS_ADDRESS.txt"},{"key":"financial_statements_or_tax_returns","type":"file","src":"/Users/yasserlluberes/mock-data-business/FINANCIAL_STATEMENTS_OR_TAX_RETURNS.txt"},{"key":"corporate_organizational_structure","type":"file","src":"/Users/yasserlluberes/mock-data-business/CORPORATE_ORGANIZATIONAL_STRUCTURE.txt"},{"key":"license","type":"file","src":"/Users/yasserlluberes/mock-data-business/LICENSE.txt"},{"key":"amlKycPolicies","type":"file","src":"/Users/yasserlluberes/mock-data-business/AML_KYC_POLICIES.txt"},{"key":"clientId","value":"1d0166f2-7b7f-4f22-b2c9-329a1bb84978","type":"text"}]},"url":"https://api.bloxcross-dev.com/register/register-coorporate","description":"<p>Generated from cURL: curl -X POST <a href=\"http://localhost:8080/register-coorporate\">http://localhost:8080/register-coorporate</a> <br />  -H \"Content-Type: multipart/form-data\" <br />  -F \"business_name=My Business Name\" <br />  -F \"trade_name=My Trade Name\" <br />  -F \"business_address_1=123 Main St\" <br />  -F \"business_address_2=Suite 400\" <br />  -F \"country=US\" <br />  -F \"region=NY\" <br />  -F \"city=New York\" <br />  -F \"postal_code=10001\" <br />  -F \"incorporation_date=2020-05-15\" <br />  -F \"incorporation_country=US\" <br />  -F \"is_regulated=true\" <br />  -F \"is_licensed=false\" <br />  -F \"nature_of_business=Technology Services\" <br />  -F \"serviced_countries=US,CA,MX\" <br />  -F \"operates_in_restricted_countries=false\" <br />  -F \"has_peps=false\" <br />  -F \"corporate_phone=+1-212-555-1234\" <br />  -F \"customer_service_phone=+1-212-555-5678\" <br />  -F \"business_type=LLC\" <br />  -F \"business_number=98-7654321\" <br />  -F \"company_websites=<a href=\"https://www.mybusiness.com\">https://www.mybusiness.com</a>\" <br />  -F \"marketing_websites=<a href=\"https://www.mybusinesspromo.com\">https://www.mybusinesspromo.com</a>\" <br />  -F \"submitter_first_name=John\" <br />  -F \"submitter_last_name=Doe\" <br />  -F \"submitter_email=<a href=\"mailto:john.doe@mybusiness.com\">john.doe@mybusiness.com</a>\" <br />  <br />  -F \"articles_of_incorporation=@/path/to/articles_of_incorporation.pdf\" <br />  -F \"shareholder_register=@/path/to/shareholder_register.pdf\" <br />  -F \"certificate_of_incorporation=@/path/to/certificate_of_incorporation.pdf\" <br />  -F \"certificate_of_good_standing=@/path/to/certificate_of_good_standing.pdf\" <br />  -F \"business_description_letter=@/path/to/business_description_letter.pdf\" <br />  -F \"last_three_bank_statements=@/path/to/last_three_bank_statements.pdf\" <br />  -F \"proof_of_business_address=@/path/to/proof_of_business_address.pdf\" <br />  -F \"financial_statements_or_tax_returns=@/path/to/financial_statements_or_tax_returns.pdf\" <br />  -F \"corporate_organizational_structure=@/path/to/corporate_organizational_structure.pdf\" <br />  <br />  -F \"license=@/path/to/license.pdf\" <br />  -F \"amlKycPolicies=@/path/to/aml_kyc_policies.pdf\"</p>\n","urlObject":{"protocol":"https","path":["register","register-coorporate"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9dde2caf-bdf2-4654-96cf-ca27f7c0f408"},{"name":"retrieve coorporate data","id":"749da84b-7a05-4998-b274-ae77d61145d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.bloxcross-dev.com/register/retrieve-coorporate-info/1d0166f2-7b7f-4f22-b2c9-329a1bb84978","description":"<h2 id=\"api-request-documentation\">API Request Documentation</h2>\n<h3 id=\"request-method\">Request Method</h3>\n<p><strong>GET</strong></p>\n<h3 id=\"request-url\">Request URL</h3>\n<p><code>https://api.bloxcross-dev.com/register/retrieve-coorporate-info/1d0166f2-7b7f-4f22-b2c9-329a1bb84978</code></p>\n<h3 id=\"request-headers\">Request Headers</h3>\n<ul>\n<li><strong>Content-Type:</strong> <code>application/json</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>This API call does not require a request body as it is a GET request. The necessary information is included in the URL.</p>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>The expected response is in JSON format and will contain the corporate information associated with the provided identifier.</p>\n<h3 id=\"example-response\">Example Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"business_name\": \"Example Business\",\n    \"trade_name\": \"Example Trade\",\n    \"business_address\": {\n        \"address_1\": \"123 Example St\",\n        \"address_2\": \"Suite 100\",\n        \"city\": \"Example City\",\n        \"region\": \"Example Region\",\n        \"country\": \"Example Country\",\n        \"postal_code\": \"12345\"\n    },\n    \"incorporation_details\": {\n        \"date\": \"2020-05-15\",\n        \"country\": \"Example Country\"\n    },\n    \"contact_info\": {\n        \"corporate_phone\": \"+1-123-456-7890\",\n        \"customer_service_phone\": \"+1-123-456-7891\",\n        \"submitter\": {\n            \"first_name\": \"Example\",\n            \"last_name\": \"User\",\n            \"email\": \"example.user@business.com\"\n        }\n    },\n    \"business_type\": \"LLC\",\n    \"business_number\": \"12-3456789\",\n    \"websites\": {\n        \"company\": \"https://www.examplebusiness.com\",\n        \"marketing\": \"https://www.examplepromo.com\"\n    },\n    \"documents\": {\n        \"articles_of_incorporation\": \"link_to_document\",\n        \"shareholder_register\": \"link_to_document\",\n        \"certificate_of_incorporation\": \"link_to_document\",\n        \"certificate_of_good_standing\": \"link_to_document\",\n        \"business_description_letter\": \"link_to_document\",\n        \"last_three_bank_statements\": \"link_to_document\",\n        \"proof_of_business_address\": \"link_to_document\",\n        \"financial_statements_or_tax_returns\": \"link_to_document\",\n        \"corporate_organizational_structure\": \"link_to_document\",\n        \"license\": \"link_to_document\",\n        \"amlKycPolicies\": \"link_to_document\"\n    }\n}\n\n</code></pre>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the identifier in the URL is valid to retrieve the correct corporate information.</p>\n</li>\n<li><p>The response will include various details about the business, including contact information, incorporation details, and links to relevant documents.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["register","retrieve-coorporate-info","1d0166f2-7b7f-4f22-b2c9-329a1bb84978"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"749da84b-7a05-4998-b274-ae77d61145d7"},{"name":"[LOCKED] Get Base Account","id":"3bba1110-7970-4351-9362-10de4f22a461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"3bba1110-7970-4351-9362-10de4f22a461"},{"name":"[LOCKED] Update Base Account","id":"aa0dd410-263e-4049-8af9-8ed45e87efb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"aa0dd410-263e-4049-8af9-8ed45e87efb0"}],"id":"51405f2e-ed1a-4191-954a-e605de1f43b8","description":"<p>Full Corporate Account under your umbrella.</p>\n<p>These accounts have their logins and have to be fully KYB</p>\n","_postman_id":"51405f2e-ed1a-4191-954a-e605de1f43b8"},{"name":"DIDA (Digital Deposit Account)","item":[{"name":"Webhooks","item":[{"name":"Get All Event Types","id":"0130813d-1c51-4392-b21c-a64a513fa2d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiUrl}}/portfolio/webhooks/eventTypes","urlObject":{"path":["portfolio","webhooks","eventTypes"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0130813d-1c51-4392-b21c-a64a513fa2d4"},{"name":"Subscribe Dida [DEPRECATED]","id":"415c61b0-e32a-41c2-8ed0-dc422c2819c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"eventType\": \"DEPOSIT\",\n  \"callbackUrl\": \"https://webhook.site/eec748d0-2041-4112-8225-2ae386c68cec\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/portfolio/webhooks/subscribe/{{account}}","urlObject":{"path":["portfolio","webhooks","subscribe","{{account}}"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"415c61b0-e32a-41c2-8ed0-dc422c2819c4"},{"name":"Subscribe","id":"100eae2d-db66-4998-b07f-a2723b6295c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"eventType\": \"DEPOSIT\",\n  \"callbackUrl\": \"https://webhook.site/84e9d9bc-50c1-4fdd-8602-284ef82ed444\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/portfolio/webhooks/subscribe","urlObject":{"path":["portfolio","webhooks","subscribe"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"100eae2d-db66-4998-b07f-a2723b6295c9"}],"id":"a1fe67d3-22e3-425d-873d-db9d0a5d3736","_postman_id":"a1fe67d3-22e3-425d-873d-db9d0a5d3736","description":""},{"name":"Am I enabled to Create dida Accounts?","id":"8b5b569e-104a-497e-b50e-492ff82e8add","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiUrl}}/accounts/dida_account/am_i_enabled","urlObject":{"path":["accounts","dida_account","am_i_enabled"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b5b569e-104a-497e-b50e-492ff82e8add"},{"name":"New DIDA","id":"32ee1d86-3c0e-4c0d-9e2a-00db026c0ed6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"KR1IeAL2DwGLyXcCwjMV4cclghlg2ltJHcxOdSAxJhGMZWFdUpJosldXxrOqZoTF"}],"body":{"mode":"raw","raw":"{\n  \"dida_name\": \"demo account - demo 43\",\n  \"dida_email\": \"yllub3eres@bloxcross.com\",\n  \"dida_phone\": \"+143348183343\",\n  \"kyc_required\": false,\n  \"rails_enabled\": [\n    {\n      \"rail\": \"crypto\",\n      \"enabled\": false\n    },\n    {\n      \"rail\": \"card\",\n      \"enabled\": false\n    }, \n    \n    {\n      \"rail\":\"local_rail\",\n      \"enabled\": false\n    }\n  ],\n  \"account_status\": \"AVAILABLE\",\n  \"dida_preffered_currency\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/new","urlObject":{"path":["accounts","dida_account","new"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"32ee1d86-3c0e-4c0d-9e2a-00db026c0ed6"},{"name":"Get DIDA","id":"094eb127-0377-4a26-be1a-635e946a7ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/get_account/{{account}}","urlObject":{"path":["accounts","dida_account","get_account","{{account}}"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"094eb127-0377-4a26-be1a-635e946a7ad5"},{"name":"Get All DIDA's","id":"f4e712d9-cdf6-4813-976f-7c66893ddd2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiUrl}}/accounts/dida_account/get_all","urlObject":{"path":["accounts","dida_account","get_all"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4e712d9-cdf6-4813-976f-7c66893ddd2f"},{"name":"Update DIDA [LOCKED]","id":"ccc617c3-0eb6-434d-a22e-4113ab739953","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": \"dwosdsdfadakf\",\n    \"dida_name\": \"Joe Jackson\",\n    \"dida_email\": \"joej@gmail.com\",\n    \"dida_phone\": \"+15846327845\",\n    \"kyc_required\": true,\n    \"rails_enabled\": [\n        {\n            \"rail\": \"crypto\",\n            \"enabled\": true\n        }\n    ],\n    \"notes\": {}\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/update","urlObject":{"path":["accounts","dida_account","update"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ccc617c3-0eb6-434d-a22e-4113ab739953"},{"name":"Enable Crypto Rails","id":"b4269e24-1621-48e0-b4f5-54c589f24c91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": \"fefc6a25-374b-4f6a-b716-337ce8fb9839\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/enable_crypto_rails","urlObject":{"path":["accounts","dida_account","enable_crypto_rails"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4269e24-1621-48e0-b4f5-54c589f24c91"},{"name":"Enable Card Rails","id":"b7d9421d-af70-4a42-bc52-252cdb043004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": \"88e2ac4b-2c17-45e5-bb69-aedf93fcf1ff\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/enable_card_rails","urlObject":{"path":["accounts","dida_account","enable_card_rails"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7d9421d-af70-4a42-bc52-252cdb043004"},{"name":"Enable Local Rails","id":"af616536-16bd-4b7d-af34-f4d8a2d24a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account_id\": \"6638b45d-2d7b-4e12-b68a-5064aeb97fd8\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/enable_local_rails","urlObject":{"path":["accounts","dida_account","enable_local_rails"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af616536-16bd-4b7d-af34-f4d8a2d24a34"},{"name":"Get DIDA Transactions","id":"5091f1bb-ae84-4c26-82f1-ecb28671ea29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/get_transactions/{{account}}","urlObject":{"path":["accounts","dida_account","get_transactions","{{account}}"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5091f1bb-ae84-4c26-82f1-ecb28671ea29"},{"name":"Get Inbound Wallet DIDA","id":"1dfa73e9-948d-4008-9a45-664ffab563ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJqcmlvc0BibG94Y3Jvc3MuY29tIiwiY29tcGFueV9pZCI6Ijg5MDNiZWZiLTMyMmEtNDk4NS1hMGM2LTc1ZTEyN2IxYThkOCIsImxhc3RfbG9naW4iOiJ7XCJ0aW1lXCI6XCIyMDI1LTA3LTE1VDE5OjE5OjMwLjI4NTMwNFwiLFwiY2l0eVwiOlwiWmFyYWdvemFcIixcInJlZ2lvblwiOlwiQXJhZ29uXCIsXCJjb3VudHJ5XCI6XCJTcGFpblwiLFwibG9jYWxlXCI6XCJFdXJvcGUvTWFkcmlkXCJ9Iiwicm9sZXMiOlsiUk9MRV9EZWZhdWx0IFVzZXIiLCJQRVJNX2Nhbl9wYXlfdmVuZG9yIiwiUEVSTV9jYW5fcGF5X3BlZXIiLCJQRVJNX2Nhbl9kZXBvc2l0X2JhbmsiLCJQRVJNX2Nhbl9kZXBvc2l0X2NyeXB0byIsIlBFUk1fY2FuX2RlcG9zaXRfY2FzaCIsIlBFUk1fY2FuX3dpdGhkcmF3X2JhbmsiLCJQRVJNX2Nhbl93aXRoZHJhd19jcnlwdG8iLCJQRVJNX2Nhbl93aXRoZHJhd19jYXNoIiwiUEVSTV9jYW5fcGF5X21lX2NyZWRpdF9jYXJkIiwiUEVSTV9jYW5fcGF5X21lX3BsdWdpbnMiLCJQRVJNX2Nhbl9jb252ZXJ0IiwiUEVSTV9jYW5fcG9ydGZvbGlvX2Fzc2V0cyAiLCJQRVJNX2Nhbl9wb3J0Zm9saW9faGlzdG9yeSJdLCJpc3MiOiJzZWN1cml0eSIsInNlc3Npb25faWQiOiJjOWExZjg0MS0zMjk2LTQ3YTctYjJlZi01Y2U3NzJiNjViNzEiLCJzdWJfYWNjb3VudCI6ZmFsc2UsImNsaWVudF9pZCI6IjY1N2UzMjMwLTE5NDMtNGFkOS1iNDkxLTNhYjg0OTgzNjczMCIsInJlcXVpcmVkXzJmYV8ycHJvY2VlZCI6IkdPT0dMRV9BVVRIIiwibmJmIjoxNzUyNTk5OTcwLCJ1c2VyX2lkIjo0MzEzLCJkb21pY2lsZSI6IkNPIiwiY3VycmVuY3kiOiJVU0QiLCJhdXRoX2Nob2ljZSI6ImF1dGhfZW5hYmxlZCIsImV4cCI6MTc1Nzc4Mzk3MCwibGFuZyI6ImVuZyIsImlhdCI6MTc1MjU5OTk3MCwiZW1haWwiOiJqcmlvc0BibG94Y3Jvc3MuY29tIn0.4G0RIwa2zPwFC4OOULtvXLzS3-3f79JMBFPdnFwRz0w"}],"body":{"mode":"raw","raw":"{\n  \"coin\":\"USDT\",\n  \"blockchain\": \"trx\",\n  \"didaId\":\"b845d800-0707-4834-aa43-ec4ff9a90bfd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/wallets/get_dida_inbound_wallet","description":"<p>Generated from cURL: curl --location '<a href=\"https://api.bloxcross-dev.com/wallets/get_dida_inbound_wallet\">https://api.bloxcross-dev.com/wallets/get_dida_inbound_wallet</a>' <br />--header 'Content-Type: application/json' <br />--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJqcmlvc0BibG94Y3Jvc3MuY29tIiwiY29tcGFueV9pZCI6Ijg5MDNiZWZiLTMyMmEtNDk4NS1hMGM2LTc1ZTEyN2IxYThkOCIsImxhc3RfbG9naW4iOiJ7XCJ0aW1lXCI6XCIyMDI1LTA3LTE1VDE5OjE5OjMwLjI4NTMwNFwiLFwiY2l0eVwiOlwiWmFyYWdvemFcIixcInJlZ2lvblwiOlwiQXJhZ29uXCIsXCJjb3VudHJ5XCI6XCJTcGFpblwiLFwibG9jYWxlXCI6XCJFdXJvcGUvTWFkcmlkXCJ9Iiwicm9sZXMiOlsiUk9MRV9EZWZhdWx0IFVzZXIiLCJQRVJNX2Nhbl9wYXlfdmVuZG9yIiwiUEVSTV9jYW5fcGF5X3BlZXIiLCJQRVJNX2Nhbl9kZXBvc2l0X2JhbmsiLCJQRVJNX2Nhbl9kZXBvc2l0X2NyeXB0byIsIlBFUk1fY2FuX2RlcG9zaXRfY2FzaCIsIlBFUk1fY2FuX3dpdGhkcmF3X2JhbmsiLCJQRVJNX2Nhbl93aXRoZHJhd19jcnlwdG8iLCJQRVJNX2Nhbl93aXRoZHJhd19jYXNoIiwiUEVSTV9jYW5fcGF5X21lX2NyZWRpdF9jYXJkIiwiUEVSTV9jYW5fcGF5X21lX3BsdWdpbnMiLCJQRVJNX2Nhbl9jb252ZXJ0IiwiUEVSTV9jYW5fcG9ydGZvbGlvX2Fzc2V0cyAiLCJQRVJNX2Nhbl9wb3J0Zm9saW9faGlzdG9yeSJdLCJpc3MiOiJzZWN1cml0eSIsInNlc3Npb25faWQiOiJjOWExZjg0MS0zMjk2LTQ3YTctYjJlZi01Y2U3NzJiNjViNzEiLCJzdWJfYWNjb3VudCI6ZmFsc2UsImNsaWVudF9pZCI6IjY1N2UzMjMwLTE5NDMtNGFkOS1iNDkxLTNhYjg0OTgzNjczMCIsInJlcXVpcmVkXzJmYV8ycHJvY2VlZCI6IkdPT0dMRV9BVVRIIiwibmJmIjoxNzUyNTk5OTcwLCJ1c2VyX2lkIjo0MzEzLCJkb21pY2lsZSI6IkNPIiwiY3VycmVuY3kiOiJVU0QiLCJhdXRoX2Nob2ljZSI6ImF1dGhfZW5hYmxlZCIsImV4cCI6MTc1Nzc4Mzk3MCwibGFuZyI6ImVuZyIsImlhdCI6MTc1MjU5OTk3MCwiZW1haWwiOiJqcmlvc0BibG94Y3Jvc3MuY29tIn0.4G0RIwa2zPwFC4OOULtvXLzS3-3f79JMBFPdnFwRz0w' <br />--data '{\n  \"coin\":\"BTC\",\n  \"blockchain\": \"btc\",\n  \"didaId\":\"38934abe-6433-4bc5-8e50-c4524b68b95a\"\n}'</p>\n","urlObject":{"path":["wallets","get_dida_inbound_wallet"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1dfa73e9-948d-4008-9a45-664ffab563ee"},{"name":"Transfer to DIDA [LOCKED]","id":"63f09d06-6871-4bc8-afb6-c182b1d4a980","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/accounts/dida_account/transfer_to_dida/{{account}}","urlObject":{"path":["accounts","dida_account","transfer_to_dida","{{account}}"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63f09d06-6871-4bc8-afb6-c182b1d4a980"},{"name":"Transfer from DIDA [LOCKED]","id":"f388687d-c83e-4e13-86f3-8ae4af26f03e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiUrl}}/accounts/dida_account/transfer_from_dida","urlObject":{"path":["accounts","dida_account","transfer_from_dida"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f388687d-c83e-4e13-86f3-8ae4af26f03e"},{"name":"Get Available Rails","id":"66d47d51-5ed5-4536-9dab-a66f97fedea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiUrl}}/accounts/rails","urlObject":{"path":["accounts","rails"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66d47d51-5ed5-4536-9dab-a66f97fedea8"},{"name":"Disable DIDA account","id":"2f2d81e3-8fa7-45ac-835a-1d5f94d05a73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{apiUrl}}/accounts/dida_account/account/b845d800-0707-4834-aa43-ec4ff9a90bfd","urlObject":{"path":["accounts","dida_account","account","b845d800-0707-4834-aa43-ec4ff9a90bfd"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f2d81e3-8fa7-45ac-835a-1d5f94d05a73"},{"name":"Get Blox Bank Account Details for Dida","id":"efb61e89-859f-443f-abc6-cfa25caf466e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{bearerToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ5bGx1YmVyZXMxOUBnbWFpbC5jb20iLCJjb21wYW55X2lkIjoiODkwM2JlZmItMzIyYS00OTg1LWEwYzYtNzVlMTI3YjFhOGQ4IiwibGFzdF9sb2dpbiI6IntcInRpbWVcIjpcIjIwMjQtMTAtMTVUMTE6Mjc6MDQuMDQ3ODMxXCIsXCJjaXR5XCI6XCJTYW50byBEb21pbmdvXCIsXCJyZWdpb25cIjpcIk5hY2lvbmFsXCIsXCJjb3VudHJ5XCI6XCJEb21pbmljYW4gUmVwdWJsaWNcIixcImxvY2FsZVwiOlwiQW1lcmljYS9TYW50b19Eb21pbmdvXCJ9Iiwicm9sZXMiOlsiUk9MRV9QYXllciIsIlJPTEVfQmxveF9BZG1pbiIsIlJPTEVfRGVmYXVsdCBVc2VyIiwiUk9MRV9EZXZlbG9wZXIiLCJST0xFX0NvbXBhbnlfQWRtaW4iLCJQRVJNX2Nhbl9hdXRob3JpemUiLCJQRVJNX2Nhbl9yZXBvcnRfYWRtaW4iLCJQRVJNX2Nhbl9yb2xlX3JlYWQiLCJQRVJNX2Nhbl9yb2xlX2NyZWF0ZSIsIlBFUk1fY2FuX3JvbGVfdXBkYXRlIiwiUEVSTV9jYW5fcm9sZV9kZWxldGUiLCJQRVJNX2Nhbl9yZXBvcnRfYmFsYW5jZSIsIlBFUk1fY2FuX3JlcG9ydF9kZXBvc2l0IiwiUEVSTV9jYW5fcmVwb3J0X3dpdGhkcmF3IiwiUEVSTV9jYW5fcGF5X3ZlbmRvciIsIlBFUk1fY2FuX3BheV9wZWVyIiwiUEVSTV9jYW5fZGVwb3NpdF9iYW5rIiwiUEVSTV9jYW5fZGVwb3NpdF9jcnlwdG8iLCJQRVJNX2Nhbl9kZXBvc2l0X2Nhc2giLCJQRVJNX2Nhbl93aXRoZHJhd19iYW5rIiwiUEVSTV9jYW5fd2l0aGRyYXdfY3J5cHRvIiwiUEVSTV9jYW5fd2l0aGRyYXdfY2FzaCIsIlBFUk1fY2FuX3BheV9tZV9jcmVkaXRfY2FyZCIsIlBFUk1fY2FuX3BheV9tZV9wbHVnaW5zIiwiUEVSTV9jYW5fY29udmVydCIsIlBFUk1fY2FuX3BvcnRmb2xpb19hc3NldHMgIiwiUEVSTV9jYW5fcG9ydGZvbGlvX2hpc3RvcnkiLCJQRVJNX2Nhbl9kZXBvc2l0X3N0YXRpYyIsIlBFUk1fY2FuX21yZXBvcnRfcGF5bWVudCIsIlBFUk1fY2FuX3dpdGhkcmF3IiwiUEVSTV9jYW5fcGF5X21lX2NyeXB0byJdLCJpc3MiOiJzZWN1cml0eSIsInNlc3Npb25faWQiOiI4MjRlOTIwMi0wZjA1LTQ4ZmUtYjYwMi1hMDlmZGI0ZDZlMDEiLCJjbGllbnRfaWQiOiIxZDAxNjZmMi03YjdmLTRmMjItYjJjOS0zMjlhMWJiODQ5NzgiLCJyZXF1aXJlZF8yZmFfMnByb2NlZWQiOiJTTVMiLCJuYmYiOjE3MjkwMDYwMjQsImRvbWljaWxlIjoiQlIiLCJjdXJyZW5jeSI6IlVTRCIsImF1dGhfY2hvaWNlIjoiYXV0aF9wZW5kaW5nIiwiZXhwIjoxNzM0MTkwMDI0LCJsYW5nIjoiZW5nIiwiaWF0IjoxNzI5MDA2MDI0LCJlbWFpbCI6InlsbHViZXJlczE5QGdtYWlsLmNvbSJ9.09wn4_qlg1RzYdLbnX5uDQf8k2VTbOuZgBLCRU9TKxA","type":"text"}],"url":"{{apiUrl}}/payments/bank-details/account/{{account}}?currency=USD","urlObject":{"path":["payments","bank-details","account","{{account}}"],"host":["{{apiUrl}}"],"query":[{"key":"currency","value":"USD"}],"variable":[]}},"response":[],"_postman_id":"efb61e89-859f-443f-abc6-cfa25caf466e"},{"name":"Funds In Bank Dida","id":"33c67f3a-fea5-49dd-bb01-e81b9dccfaa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"amount\": 34,\n  \"from_currency\": \"USD\",\n  \"note\": \"\",\n  \"payer_redirect_url\": \"https://api.bloxcross-dev.com/dashboard/result/deposit/true\",\n  \"to_currency\": \"USD\",\n  \"usd_equiv\": 34\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiUrl}}/payments/funds_in_bank/{{account}}","urlObject":{"path":["payments","funds_in_bank","{{account}}"],"host":["{{apiUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33c67f3a-fea5-49dd-bb01-e81b9dccfaa1"}],"id":"bc21da0f-7381-4352-91b9-f70636ac2886","description":"<ul>\n<li><p>Blox account holder can create n number of DiDa accounts to<br />  receive Payments.</p>\n</li>\n<li><p>Create a Digital Deposit Account to be able to know who paid you.</p>\n</li>\n<li><p>This is for Outside initiated Payments</p>\n</li>\n<li><p>These are no-login account (or Reports only), Deposit-only<br />  accounts, no Payouts or any other services enabled</p>\n</li>\n<li><p>Enable Auto-Consolidation – as deposits come in, send to Blox<br />  Holder account - or Manual</p>\n</li>\n<li><p>Types of account:</p>\n<ul>\n<li><p>KYC/KYB required</p>\n</li>\n<li><p>No KYB</p>\n</li>\n</ul>\n</li>\n<li><p>Types of Payment rails:</p>\n<ul>\n<li><p>Crypto</p>\n</li>\n<li><p>Card</p>\n</li>\n<li><p>Local Rails</p>\n</li>\n</ul>\n</li>\n<li><p>Blox Account holder will see Deposits in his regular account, but<br />  with the added information of:</p>\n<ul>\n<li><p>Who it was from</p>\n</li>\n<li><p>Rail used</p>\n</li>\n</ul>\n</li>\n<li><p>Blox account holder can disable any DiDa account<br />  Blox client can run reports per DiDa Account as well as aggregate<br />  reports</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/34ef2291-4bd4-44da-9af2-1cb54a75d42a/RGlkYV9jcmVhdGUucG5n\" alt=\"DIDA%20Create\" width=\"1163\" height=\"450\" />\n\n<ul>\n<li><p>When Deposits come in, the following process happens:</p>\n<ul>\n<li><p>DEPOSIT registered in the DiDa Portfolio</p>\n</li>\n<li><p>WITHDRAW from DiDa and DEPOSIT to Blox Account<br />  Holder</p>\n</li>\n<li><p>Notification generated for Blox Account Holder</p>\n</li>\n<li><p>If Digital Assets Deposited, then Deposit is transferred<br />  from the DiDa vault to the Blox Account vault</p>\n</li>\n</ul>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/167f5708-cce5-4901-bed1-cdfa79bc7409/RGlkYV9EZXBvc2l0LnBuZw==\" alt=\"DIDA%20Deposit\" width=\"857\" height=\"363\" />","_postman_id":"bc21da0f-7381-4352-91b9-f70636ac2886"},{"name":"[LOCKED] CHILD ACCOUNT","item":[{"name":"[LOCKED] Am I enabled to Create Child Accounts?","id":"0d80183b-35b7-4423-916c-c78eadda3011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiurl}}/v202506/account/corporate/enabled","urlObject":{"path":["v202506","account","corporate","enabled"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d80183b-35b7-4423-916c-c78eadda3011"},{"name":"[LOCKED] New Child Account Link","id":"791df84d-ccbd-46c8-bfba-54f663daa1ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"791df84d-ccbd-46c8-bfba-54f663daa1ed"},{"name":"[LOCKED] New Child Account","id":"36ba5f04-0c3a-4078-bb09-29626549fe68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"36ba5f04-0c3a-4078-bb09-29626549fe68"},{"name":"[LOCKED] Get Child Account","id":"70dbbe06-e7bb-43d8-af06-d3258312fce1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"70dbbe06-e7bb-43d8-af06-d3258312fce1"},{"name":"[LOCKED] Update Child Account","id":"f7ce8b7d-b175-4f81-803b-2995cd244047","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f7ce8b7d-b175-4f81-803b-2995cd244047"},{"name":"[LOCKED] Get Rates for Child Account","id":"eb55c569-801f-4e9c-8bc9-c2728e2b567d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"eb55c569-801f-4e9c-8bc9-c2728e2b567d"},{"name":"[LOCKED] Set Child Account Rates","id":"23e8063c-9e17-4abf-a4b3-0009a3b100cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"23e8063c-9e17-4abf-a4b3-0009a3b100cd"},{"name":"[LOCKED] Get Available Modules","id":"1ddb198d-9ae1-42b0-a5db-9334d1df30ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"1ddb198d-9ae1-42b0-a5db-9334d1df30ee"},{"name":"[LOCKED] Get Child Account Modules","id":"f64b23c0-3b5d-42ee-925e-c364cd129415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f64b23c0-3b5d-42ee-925e-c364cd129415"},{"name":"[LOCKED] Enable Module for Child Account","id":"8368621c-969b-4fb2-bf04-14c6046ca0f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"8368621c-969b-4fb2-bf04-14c6046ca0f0"},{"name":"[LOCKED] Disable Child Account Module","id":"7d047161-9931-4acd-a56a-6e3ac70942ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"7d047161-9931-4acd-a56a-6e3ac70942ff"},{"name":"[LOCKED] Get Available Products","id":"fe4c493e-211d-4d13-9214-2e7b8c9b3155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"fe4c493e-211d-4d13-9214-2e7b8c9b3155"},{"name":"[LOCKED] Get Child Account Products","id":"93da40dc-05e5-4528-a598-ab3dded79b92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"93da40dc-05e5-4528-a598-ab3dded79b92"},{"name":"[LOCKED] Enable Product for Child Account","id":"71ad2654-2c26-4982-9624-46e63812bd50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"71ad2654-2c26-4982-9624-46e63812bd50"},{"name":"[LOCKED] Disable Child Account Product","id":"9cdaf277-c51f-429c-bf7d-d68badc295ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"9cdaf277-c51f-429c-bf7d-d68badc295ec"},{"name":"[LOCKED] Get Deposit Sources Available","id":"0261afc2-9f41-4294-96a7-24f6238996a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"0261afc2-9f41-4294-96a7-24f6238996a2"},{"name":"[LOCKED] Get Child Account Deposit Sources","id":"dbfaa9b7-a07f-499b-8e3f-b2f6a45df853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"dbfaa9b7-a07f-499b-8e3f-b2f6a45df853"},{"name":"[LOCKED] Get Child Account Deposit Sources Copy","id":"f70f1303-0bdb-4624-bacb-cb4158bbc801","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f70f1303-0bdb-4624-bacb-cb4158bbc801"},{"name":"[LOCKED] Enable Child Account Deposit Source","id":"b4e4c4ca-3157-4703-a536-cb6a94e64bb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"b4e4c4ca-3157-4703-a536-cb6a94e64bb0"},{"name":"[LOCKED] Disable Child Account Deposit Source","id":"3b0fe21c-743e-4f80-aa19-071fcf123e14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"3b0fe21c-743e-4f80-aa19-071fcf123e14"},{"name":"[LOCKED] Get Assets that we can Hold","id":"40ad3a87-b111-4e9e-9eaa-9f06c9bed963","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"40ad3a87-b111-4e9e-9eaa-9f06c9bed963"},{"name":"[LOCKED] Get Child Account Enabled Assets","id":"48be58f3-a5cf-47ab-9921-9a16e3886aa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"48be58f3-a5cf-47ab-9921-9a16e3886aa7"},{"name":"[LOCKED] Enable Child Account Asset","id":"342b2573-a90a-46f3-be78-5e33dd364d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"342b2573-a90a-46f3-be78-5e33dd364d70"},{"name":"[LOCKED] Disable Child Account Asset","id":"81fdc6cf-2d8b-48a3-952f-284f16184bbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"81fdc6cf-2d8b-48a3-952f-284f16184bbc"},{"name":"[LOCKED] Get Payout Destinations","id":"ecc4a644-1ee3-4884-9d7e-7c280aa5600a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"ecc4a644-1ee3-4884-9d7e-7c280aa5600a"},{"name":"[LOCKED] Get Child Account Payout Destinations","id":"0c6eb88f-17d7-4d36-b8bc-2c3057123afe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"0c6eb88f-17d7-4d36-b8bc-2c3057123afe"},{"name":"[LOCKED] Enable Child Account Payout Destinations","id":"9f0bd1ec-c4b7-4f38-a1bc-c8e7a60e9247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"9f0bd1ec-c4b7-4f38-a1bc-c8e7a60e9247"},{"name":"[LOCKED] Disable Child Account Payout Destinations","id":"22346481-da49-42fb-9d8f-9f286adb800c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"22346481-da49-42fb-9d8f-9f286adb800c"},{"name":"[LOCKED] Get Transaction Types","id":"3ae797e0-42cb-43f6-a12d-5332f9ca4bb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"3ae797e0-42cb-43f6-a12d-5332f9ca4bb5"},{"name":"[LOCKED] Debit Child Account","id":"857e51ec-0c88-4a6a-90e0-4acafab4a9c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"857e51ec-0c88-4a6a-90e0-4acafab4a9c1"},{"name":"[LOCKED] Credit Child Account","id":"5399237f-c47b-427e-b42f-3b017c54d468","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"5399237f-c47b-427e-b42f-3b017c54d468"},{"name":"[LOCKED] Get Child Account Transactions","id":"19af5276-f090-457b-878f-7d61782e9d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"19af5276-f090-457b-878f-7d61782e9d69"}],"id":"fef86186-b156-4e80-8379-f8a87e96a3fb","description":"<p>Full Blox account, under an account Parent<br />Only available to enabled clients with this Service Enabled<br />Parent account can:<br />• Create/Delete Child Accounts<br />• View Child Accounts<br />• Set Rates<br />• Debit/Credit Adjustments to Child Accounts<br />• Enable/Disable Modules<br />• Enable/Disable Sources/Hold/Destinations<br />• Run reports individually or in aggregate<br />Enhanced security for Parent manager<br />All Child Accounts need to be KYC/KYB cleared<br />There are two modes to create a Child Account:</p>\n<ol>\n<li><p>Gen-Link: Create a link for Client to Register</p>\n</li>\n<li><p>Gen-Account: Create an account and send a password<br /> reset Link<br /> Client still required to provide KYC/KYB Information and validate<br /> email/phone to fully use account</p>\n</li>\n</ol>\n<img src=\"https://content.pstmn.io/2722357b-0cfe-4e0f-aa8f-cb9fed258030/Q2hpbGRfYWNjb3VudC5wbmc=\" alt=\"Child%20Account%20Request\" width=\"829\" height=\"167\" />\n\n<p><img src=\"https://content.pstmn.io/3ae6b9c4-8c8b-44ea-9775-a3d8b7b355d6/U2NyZWVuc2hvdF8yMDI1LTA2LTA5XzAxLTExLTI5LnBuZw==\" alt=\"Create%20Request%20Link\n&lt;br&gt;\n&lt;br&gt;\" width=\"1354\" height=\"333\" /></p>\n<img src=\"https://content.pstmn.io/d3c441f4-7317-4801-a5e7-78b52c8cadac/U2NyZWVuc2hvdF8yMDI1LTA2LTA5XzAxLTEzLTA2LnBuZw==\" alt=\"Create%20Account%20and%20Password%20Link\" />","_postman_id":"fef86186-b156-4e80-8379-f8a87e96a3fb"},{"name":"[LOCKED] SUB-ACCOUNT","item":[{"name":"[LOCKED] New SubAccount","id":"ba883d66-8c93-4cce-972b-96ee72982724","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"ba883d66-8c93-4cce-972b-96ee72982724"},{"name":"[LOCKED] Update SubAccount","id":"d2c0886b-d117-4dc2-9b84-c24ba13f2e0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"d2c0886b-d117-4dc2-9b84-c24ba13f2e0e"},{"name":"[LOCKED] Get SubAccount Transactions","id":"f289eca9-c851-47b4-b5d2-cba38d957e30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"f289eca9-c851-47b4-b5d2-cba38d957e30"},{"name":"[LOCKED] Delete SubAccount","id":"b846cbba-7316-451d-8121-9c27d5594035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"b846cbba-7316-451d-8121-9c27d5594035"}],"id":"75cde833-8865-462d-b107-8a638f88be28","description":"<ul>\n<li><p>Another Portfolio Account</p>\n</li>\n<li><p>Only accessible to this Entity/User</p>\n</li>\n<li><p>No separate Login, added to the same login</p>\n</li>\n<li><p>Limited, more Sub-Accounts will be charged</p>\n</li>\n<li><p>Blox account holder can disable any Sub account</p>\n</li>\n<li><p>Blox client can run reports per Sub Account as well as aggregate<br />  reports</p>\n</li>\n</ul>\n","_postman_id":"75cde833-8865-462d-b107-8a638f88be28"},{"name":"[LOCKED] FBO Accounts","item":[],"id":"356e9355-7e4e-4f61-a5e7-ccb4f67cbeb8","_postman_id":"356e9355-7e4e-4f61-a5e7-ccb4f67cbeb8","description":""}],"id":"63c12c9f-e11b-4385-9bb4-677fbe379177","description":"<p>Corporate Accounts can be of these types:</p>\n<ol>\n<li><p>Base Accounts: independent Corporate Accounts</p>\n</li>\n<li><p>Digital Deposit Account (DiDa): This is for Outside initiated Payments. These are no-login account (or Reports only), Deposit-only<br /> accounts, no Payouts or any other services enabled</p>\n</li>\n<li><p>Child Accounts: Full Blox account, under an account Parent</p>\n</li>\n<li><p>Sub-Accounts: A second Portfolio Account. Only accessible to this Entity/User. No separate Login, added to the same login</p>\n</li>\n</ol>\n<p>DIDA, Child and Sub Accounts need to be Enabled</p>\n","_postman_id":"63c12c9f-e11b-4385-9bb4-677fbe379177"},{"name":"INDIVIDUAL","item":[{"name":"INDIVIDUAL ACCOUNT","item":[{"name":"New individualAccount","id":"207a844b-d6fb-48ce-a2cf-f1a5faad2223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"KR1IeAL2DwGLyXcCwjMV4cclghlg2ltJHcxOdSAxJhGMZWFdUpJosldXxrOqZoTF","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"fname\":\"Diego\",\n    \"lname\":\"Test2\",\n    \"email\":\"baezd@yahoo.com\",\n    \"phone\":\"+12122561693\",\n    \"password\":\"My$tandard15\",\n    \"domicile\":\"CO\",\n    \"language\":\"eng\",\n    \"preferred_currency\": \"USD\",\n    \"ref_code\": \"123456\",\n    \"person_type\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/register/v2/simple","description":"<h3 id=\"register-user-endpoint\">Register User Endpoint</h3>\n<p>This endpoint allows for the registration of a new user in the system. It utilizes the HTTP POST method to submit user information.</p>\n<p><strong>Endpoint:</strong> <code>{{apiurl}}/register/v2/simple</code></p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>fname</strong> (string): The first name of the user.</p>\n</li>\n<li><p><strong>lname</strong> (string): The last name of the user.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address of the user.</p>\n</li>\n<li><p><strong>phone</strong> (string): The phone number of the user, including the country code.</p>\n</li>\n<li><p><strong>password</strong> (string): The password for the user's account.</p>\n</li>\n<li><p><strong>domicile</strong> (string): The user's place of residence, typically represented by a state or region code.</p>\n</li>\n<li><p><strong>language</strong> (string): The preferred language of the user.</p>\n</li>\n<li><p><strong>preferred_currency</strong> (string): The currency the user prefers for transactions.</p>\n</li>\n<li><p><strong>ref_code</strong> (string): A referral code, if applicable.</p>\n</li>\n<li><p><strong>person_type</strong> (string): Indicates whether the user is an individual or a business.</p>\n</li>\n</ul>\n<h4 id=\"expected-response-format\">Expected Response Format</h4>\n<p>Upon successful registration, the API will return a response indicating the status of the request, typically in JSON format. The response will include relevant details about the registration outcome, such as success confirmation or error messages if applicable.</p>\n<p>Ensure that all required parameters are provided in the request body to avoid errors during the registration process.</p>\n","urlObject":{"path":["register","v2","simple"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"207a844b-d6fb-48ce-a2cf-f1a5faad2223"},{"name":"[LOCKED] New Account - Send Link","id":"052280ba-dfa5-49c0-a026-fb7d7687c72c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiurl}}/v202506/account/individual/new_link","urlObject":{"path":["v202506","account","individual","new_link"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"052280ba-dfa5-49c0-a026-fb7d7687c72c"},{"name":"[LOCKED] New Account - Send Password Change Only","id":"0152ef7b-d9af-4072-a05a-3f4dade64a07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiurl}}/v202506/account/individual/new_on_behalf","urlObject":{"path":["v202506","account","individual","new_on_behalf"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0152ef7b-d9af-4072-a05a-3f4dade64a07"}],"id":"b36f4e4d-ed37-4a44-ba0b-a38a9854bc7f","_postman_id":"b36f4e4d-ed37-4a44-ba0b-a38a9854bc7f","description":""}],"id":"3c79e114-7663-4015-8882-62494cb96d4d","_postman_id":"3c79e114-7663-4015-8882-62494cb96d4d","description":""}],"id":"e5543741-b4c6-4c09-af6f-113adc41d723","description":"<p>All interactions with the system, past the iniital registration, require a registered user. This applies to:</p>\n<ul>\n<li><p>Administrators setting Up a Payment Company or Entity</p>\n</li>\n<li><p>Content or Service Providers</p>\n</li>\n<li><p>Clients who will purchase or subscribe to products</p>\n</li>\n</ul>\n<p>The registration is a three step process:</p>\n<ol>\n<li><p>Register the User (Register)</p>\n</li>\n<li><p>Validate the Phone Number (Confirm to Send a code + Validate to validate the code)</p>\n</li>\n<li><p>Validate the Email (Confirm to Send a code + Validate to validate the code)</p>\n</li>\n</ol>\n<p>Once the Email and Phone are validated, everytime the user logs in there is a 2FA process to validate the loogin, with SMS being the default method to receive the code. The code is always validated using the Validae method.</p>\n<p>You can open Individual Accounts or Corporate Accounts with Blox.</p>\n","_postman_id":"e5543741-b4c6-4c09-af6f-113adc41d723"},{"name":"DEPOSIT","item":[{"name":"[DEV_ONLY] deposit","id":"2f91f5a6-f5b3-4e98-9d1a-83e8b3c88f21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\",\n\"instrument\": \"USDT\",\n\"qty\": 5000005,\n\"cost_basis\": 1,\n\"from\": \"Treasury\",\n\"notes\": \"Dev Deposit\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/deposit","description":"<h3 id=\"add-deposit-to-portfolio\">Add Deposit to Portfolio</h3>\n<p>This is development only ENDPOINT</p>\n<p>This endpoint allows users to add a deposit to a specified portfolio. It is designed to facilitate the management of financial instruments within a user's portfolio by recording deposits with relevant details.</p>\n<h4 id=\"request\">Request</h4>\n<p><strong>Method:</strong> POST<br /><strong>Endpoint:</strong> <code>{{apiurl}}/portfolio/deposit</code></p>\n<p><strong>Request Body:</strong><br />The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>portfolio_name</strong> (string): The name of the portfolio to which the deposit is being added.</p>\n</li>\n<li><p><strong>instrument</strong> (string): The type of financial instrument being deposited (e.g., currency, stock).</p>\n</li>\n<li><p><strong>qty</strong> (number): The quantity of the instrument being deposited.</p>\n</li>\n<li><p><strong>cost_basis</strong> (number): The cost basis for the deposited quantity, representing the original value of the asset.</p>\n</li>\n<li><p><strong>from</strong> (string): The source from which the deposit is made (e.g., Treasury).</p>\n</li>\n<li><p><strong>notes</strong> (string): Any additional notes regarding the deposit.</p>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"portfolio_name\": \"My Portfolio\",\n  \"instrument\": \"USDT\",\n  \"qty\": 5000005,\n  \"cost_basis\": 1,\n  \"from\": \"Treasury\",\n  \"notes\": \"Dev Deposit\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>The response will contain the details of the deposit that has been added to the portfolio. The structure of the response typically includes confirmation of the deposit along with any relevant metadata, such as:</p>\n<ul>\n<li><p><strong>status</strong> (string): Indicates the success or failure of the deposit operation.</p>\n</li>\n<li><p><strong>message</strong> (string): A message providing additional information about the result of the request.</p>\n</li>\n<li><p><strong>deposit_id</strong> (string): A unique identifier for the deposit transaction.</p>\n</li>\n</ul>\n<p>This endpoint is essential for users looking to manage their portfolios effectively by keeping track of deposits and ensuring accurate financial records.</p>\n","urlObject":{"path":["portfolio","deposit"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f91f5a6-f5b3-4e98-9d1a-83e8b3c88f21"}],"id":"3b8e1016-3aae-4896-9400-1a3d6ee9f591","_postman_id":"3b8e1016-3aae-4896-9400-1a3d6ee9f591","description":""},{"name":"WITHDRAW","item":[{"name":"[DEV_ONLY] withdraw","id":"570fef79-5188-40e4-b4c2-c8c59787ea74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\",\n\"withdraw_to\": \"My Wallet at another custodian\",\n\"instrument\": \"USD\",\n\"qty\": 943260.00578009,\n\"notes\": \"Wired from Chase\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/withdraw","description":"<h2 id=\"withdraw-from-portfolio\">Withdraw from Portfolio</h2>\n<p>This is a DEVELOPMENT ONLY endpoint</p>\n<p>This endpoint allows users to withdraw funds from a specified portfolio. The request requires details about the portfolio, the destination for the withdrawal, the instrument type, the quantity to withdraw, and any additional notes.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>portfolio_name</strong> (string): The name of the portfolio from which funds are being withdrawn.</p>\n</li>\n<li><p><strong>withdraw_to</strong> (string): The destination where the withdrawn amount will be sent, such as a wallet or bank account.</p>\n</li>\n<li><p><strong>instrument</strong> (string): The type of currency or asset to be withdrawn (e.g., USD).</p>\n</li>\n<li><p><strong>qty</strong> (number): The quantity of the specified instrument to withdraw.</p>\n</li>\n<li><p><strong>notes</strong> (string): Additional information or instructions related to the withdrawal.</p>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>Upon a successful request, the API will return a confirmation of the withdrawal, including details such as the transaction ID and the status of the operation. In case of an error, an appropriate error message will be provided.</p>\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>Ensure that the portfolio name and withdrawal destination are correctly specified to avoid errors.</p>\n</li>\n<li><p>The quantity must be within the available balance in the portfolio.</p>\n</li>\n<li><p>Additional notes can be used to provide context or instructions for the withdrawal process.</p>\n</li>\n</ul>\n","urlObject":{"path":["portfolio","withdraw"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"570fef79-5188-40e4-b4c2-c8c59787ea74"}],"id":"30950e10-cd3b-4b10-9d8b-85b9bf9adb0a","_postman_id":"30950e10-cd3b-4b10-9d8b-85b9bf9adb0a","description":""},{"name":"PAY","item":[{"name":"External Payments","item":[{"name":"Create Vendor","id":"dfefe7d0-4a32-4afb-ab55-fbb295f099a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_name\": \"Vendor_4\",\n    \"vendor_last_name\": \"vendorLastName\",\n    \"vendor_email\": \"vendor_4@gmail.com\",\n    \"vendor_phone\": \"+19853253544\",\n    \"vendor_location\": \"US\",\n    \"vendor_phone_country\": \"US\",\n    \"vendor_address\": \"\",\n    \"vendor_city\": \"\",\n    \"vendor_sub_division\": \"\",\n    \"vendor_postal_code\": \"\",\n    \"person_type\": \"individual\",\n    \"web_site\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/new_vendor","description":"<p>person_type is one of: individual, business</p>\n","urlObject":{"path":["vendors","new_vendor"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"31171d6a-28c9-4669-bbf4-b9edee46f887","name":"Create Vendor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_name\": \"Vendor_4\",\n    \"vendor_last_name\":\"vendorLastName\",\n    \"vendor_email\": \"vendor_4@gmail.com\",\n    \"vendor_phone\": \"+19853253544\",\n    \"vendor_location\": \"US\",\n    \"vendor_phone_country\": \"US\",\n    \"vendor_address\": \"\",\n    \"vendor_city\":\"\",\n    \"vendor_sub_division\":\"\",\n    \"vendor_postal_code\":\"\",\n    \"person_type\":\"individual\",\n    \"web_site\":\"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/new_vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:44:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"74"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"3d3a2e57-f61b-461e-a188-46bc4d9debed\"\n}"}],"_postman_id":"dfefe7d0-4a32-4afb-ab55-fbb295f099a1"},{"name":"Get My Vendors","id":"186f7b20-eed3-4236-a856-e84ddd7b301d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/my_vendors","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["payments","my_vendors"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"4998cb79-4515-4e72-90b1-7cf08ef224f1","name":"Get My Vendors","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/my_vendors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:44:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"827"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_vendor_id\": \"58bd6a1b-c80a-4cd0-a981-7b811cca0abb\",\n        \"name\": \"vendor_1\",\n        \"email\": \"vendor_1@gmail.com\",\n        \"phone\": \"+19853253541\",\n        \"location\": \"US\",\n        \"metadata\": {},\n        \"status\": \"CREATED\"\n    },\n    {\n        \"client_vendor_id\": \"73c79d25-dc0b-4949-8c51-29fc9ca47808\",\n        \"name\": \"vendor_3\",\n        \"email\": \"vendor_1@gmail.com\",\n        \"phone\": \"+19853253541\",\n        \"location\": \"US\",\n        \"metadata\": {},\n        \"status\": \"CREATED\"\n    },\n    {\n        \"client_vendor_id\": \"298ec5b8-be7c-44c4-a918-2f75f18b7fe0\",\n        \"name\": \"salmobile\",\n        \"email\": \"sal_mobile@gmail.com\",\n        \"phone\": \"+19853253549\",\n        \"location\": \"US\",\n        \"metadata\": {\n            \"product\": \"Cell Phones\"\n        },\n        \"status\": \"CREATED\"\n    },\n    {\n        \"client_vendor_id\": \"3d3a2e57-f61b-461e-a188-46bc4d9debed\",\n        \"name\": \"vendor_4\",\n        \"email\": \"vendor_4@gmail.com\",\n        \"phone\": \"+19853253544\",\n        \"location\": \"US\",\n        \"metadata\": {},\n        \"status\": \"CREATED\"\n    }\n]"}],"_postman_id":"186f7b20-eed3-4236-a856-e84ddd7b301d"},{"name":"Get Payment Methods","id":"8240a5c3-f2b6-4e3c-a905-4b0ba4737452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/all_vendor_payment_methods","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["payments","all_vendor_payment_methods"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"2ad4c887-f32f-4b66-8049-1febe8440d47","name":"Get Payment Methods","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/all_vendor_payment_methods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:35:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"613"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"in_out_method_type\": \"ach\",\n        \"description\": \"ACH transfer\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"acount_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Name on the Account\"\n                },\n                {\n                    \"name\": \"routing_number\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Routing number\"\n                },\n                {\n                    \"name\": \"account_type\",\n                    \"values\": \"CHECKING|SAVING\",\n                    \"mandatory\": true,\n                    \"description\": \"CHECKING or SAVING\"\n                },\n                {\n                    \"name\": \"account_class\",\n                    \"values\": \"BUSINESS|PERSONAL\",\n                    \"mandatory\": true,\n                    \"description\": \"BUSINESS or PERSONAL\"\n                },\n                {\n                    \"name\": \"account_number\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Bank Account number\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"bank_wire_us\",\n        \"description\": \"Bank Same Day Outbound Wire US\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"acount_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Name on the Account\"\n                },\n                {\n                    \"name\": \"routing_number\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Routing number\"\n                },\n                {\n                    \"name\": \"account_type\",\n                    \"values\": \"CHECKING|SAVING\",\n                    \"mandatory\": true,\n                    \"description\": \"CHECKING or SAVING\"\n                },\n                {\n                    \"name\": \"account_class\",\n                    \"values\": \"BUSINESS|PERSONAL\",\n                    \"mandatory\": true,\n                    \"description\": \"BUSINESS or PERSONAL\"\n                },\n                {\n                    \"name\": \"account_number\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Bank Account number\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"cheque\",\n        \"description\": \"Physical Check\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"recipient_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Name on the Checque\"\n                },\n                {\n                    \"name\": \"mailing_address\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Company business address (must be in the US; no PO box or virtual/forwarding addresses allowed\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"card\",\n        \"description\": \"Bank Same Day Outbound Wire International\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"name_on_card\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Name on the Account\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"venmo\",\n        \"description\": \"Venmo\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"venmo_user_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": false,\n                    \"description\": \"Venmo @usernamet\"\n                },\n                {\n                    \"name\": \"phone\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Phone registered at Venmo\"\n                },\n                {\n                    \"name\": \"email\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Email registered ay Venmo\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"paypal\",\n        \"description\": \"Paypal\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"paypal_user_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": false,\n                    \"description\": \"Venmo @usernamet\"\n                },\n                {\n                    \"name\": \"phone\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Phone registered at Venmo\"\n                },\n                {\n                    \"name\": \"email\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Email registered ay Venmo\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    },\n    {\n        \"in_out_method_type\": \"bank_wire_intl\",\n        \"description\": \"Bank Same Day Outbound Wire International\",\n        \"fields\": {\n            \"fields\": [\n                {\n                    \"name\": \"acount_name\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Name on the Account\"\n                },\n                {\n                    \"name\": \"country\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Country of Bank Account\"\n                },\n                {\n                    \"name\": \"account_type\",\n                    \"values\": \"CHECKING|SAVING\",\n                    \"mandatory\": true,\n                    \"description\": \"CHECKING or SAVING\"\n                },\n                {\n                    \"name\": \"account_class\",\n                    \"values\": \"BUSINESS|PERSONAL\",\n                    \"mandatory\": true,\n                    \"description\": \"BUSINESS or PERSONAL\"\n                },\n                {\n                    \"name\": \"account_number\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"Bank Account number\"\n                },\n                {\n                    \"name\": \"swift_bic_code\",\n                    \"values\": \"ANY\",\n                    \"mandatory\": true,\n                    \"description\": \"SWIFT / BIC code\"\n                }\n            ]\n        },\n        \"direction\": \"out\",\n        \"active\": true\n    }\n]"}],"_postman_id":"8240a5c3-f2b6-4e3c-a905-4b0ba4737452"},{"name":"Create Vendor Payment Account","id":"583c3f75-5c82-4fed-85a2-f5fdeaa93b1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"pay_account_name\": \"wire-005\",\n    \"pay_method_type\": \"bank_wire_us\",\n    \"client_vendor_id\": \"1a127710-5ea9-42ed-b4e1-bfecd12fd3e8\",\n    \"metadata\": {\n        \"beneficiary_name\": \"A1\",\n        \"routing_number\": \"021000021\",\n        \"account_number\": \"800879079\",\n        \"account_class\": \"BUSINESS\",\n        \"account_type\": \"CHECKING\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/new_vendor_account","description":"<p>Metadata <strong>MUST include all fileds for this</strong> pay_method_typ[e which are labeled \"mandatory\": true</p>\n","urlObject":{"path":["vendors","new_vendor_account"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"15092eb6-a3e8-40b9-94eb-71237ea65c7c","name":"Create Vendor Payment Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"pay_account_name\": \"BofA-9999=ach2\",\n    \"pay_method_type\": \"ach\",\n    \"client_vendor_id\": \"298ec5b8-be7c-44c4-a918-2f75f18b7fe0\",\n    \"metadata\": {\n                    \"acount_name\": \"Sal Mobile\",\n                    \"routing_number\": \"547596521\",\n                    \"account_number\": \"54871213465\",\n                    \"account_type\": \"CHECKING\",\n                    \"account_class\": \"BUSINESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/new_vendor_account"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:45:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"143"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000000,\n    \"payload\": \"Payment Method Already Exists for this vendor, Only one Pay-Method-Type per vendor allowed: [ach] \"\n}"},{"id":"e3bfd98e-367e-40d2-b1b9-fef9e0d7457f","name":"Create Vendor Payment Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"pay_account_name\": \"BofA-7632-ach\",\n    \"pay_method_type\": \"ach\",\n    \"client_vendor_id\": \"73c79d25-dc0b-4949-8c51-29fc9ca47808\",\n    \"metadata\": {\n                    \"acount_name\": \"Sal Mobile\",\n                    \"routing_number\": \"547596521\",\n                    \"account_number\": \"54871213465\",\n                    \"account_type\": \"CHECKING\",\n                    \"account_class\": \"BUSINESS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/new_vendor_account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:46:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"74"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"2c355d95-7baf-419f-9305-6ef09b68e243\"\n}"}],"_postman_id":"583c3f75-5c82-4fed-85a2-f5fdeaa93b1f"},{"name":"Get My Vendor Accounts","id":"c17bb03e-2e22-4486-992a-2fc78852972b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/my_vendor_accounts","description":"<ul>\n<li>If the client has FBO Account each account can have the sync field, this indicates if the account is synced in the FBO account</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n\n</code></pre>","urlObject":{"path":["vendors","my_vendor_accounts"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"f8b28ac4-5562-41b6-924e-2302ca103f83","name":"Get My Vendor Accounts","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/my_vendor_accounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:46:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"421"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"client_vendor_id\": \"298ec5b8-be7c-44c4-a918-2f75f18b7fe0\",\n        \"vendor_name\": \"salmobile\",\n        \"json_build_object\": {\n            \"accounts\": [\n                {\n                    \"name\": \"bofa-9999\",\n                    \"payment_account_id\": \"a130b7f5-63eb-4de1-b3ef-65375e1c813b\",\n                    \"pay_method_type\": \"bank_wire_us\",\n                    \"metadata\": {\n                        \"acount_name\": \"Sal Mobile\",\n                        \"account_type\": \"CHECKING\",\n                        \"account_class\": \"BUSINESS\",\n                        \"account_number\": \"54871213465\",\n                        \"routing_number\": \"021000021\"\n                    }\n                },\n                {\n                    \"name\": \"bofa-9999ach\",\n                    \"payment_account_id\": \"d54ac893-bbcc-4b02-8410-e70c0056a0a5\",\n                    \"pay_method_type\": \"ach\",\n                    \"metadata\": {\n                        \"acount_name\": \"Sal Mobile\",\n                        \"account_type\": \"CHECKING\",\n                        \"account_class\": \"BUSINESS\",\n                        \"account_number\": \"54871213465\",\n                        \"routing_number\": \"547596521\"\n                    }\n                }\n            ]\n        }\n    },\n    {\n        \"client_vendor_id\": \"73c79d25-dc0b-4949-8c51-29fc9ca47808\",\n        \"vendor_name\": \"vendor_3\",\n        \"json_build_object\": {\n            \"accounts\": [\n                {\n                    \"name\": \"bofa-7632-ach\",\n                    \"payment_account_id\": \"2c355d95-7baf-419f-9305-6ef09b68e243\",\n                    \"pay_method_type\": \"ach\",\n                    \"metadata\": {\n                        \"acount_name\": \"Sal Mobile\",\n                        \"account_type\": \"CHECKING\",\n                        \"account_class\": \"BUSINESS\",\n                        \"account_number\": \"54871213465\",\n                        \"routing_number\": \"547596521\"\n                    }\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"c17bb03e-2e22-4486-992a-2fc78852972b"},{"name":"Pay Vendor","id":"6a8891a1-5085-4746-85a5-8d8994a25928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"a130b7f5-63eb-4de1-b3ef-65375e1c813b\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\":\"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor","urlObject":{"path":["vendors","pay_vendor"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"96cae684-e636-40fc-84c2-5a2590a6bf97","name":"Pay Vendor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\":\"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:46:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"106"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000212,\n    \"payload\": \"No Vendor Account Found: 2c777e8f-bbe5-4416-ad2a-e2079061a30d\"\n}"},{"id":"cc03d31b-0bee-4119-a85a-b257a33a1bbc","name":"Pay Vendor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"a130b7f5-63eb-4de1-b3ef-65375e1c813b\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\":\"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:47:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"59"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"Payment Request Sent \"\n}"}],"_postman_id":"6a8891a1-5085-4746-85a5-8d8994a25928"},{"name":"Pay Vendor with 2FA","id":"70827b04-9947-45f1-9fdf-0b930a7f928a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"a130b7f5-63eb-4de1-b3ef-65375e1c813b\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\": \"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    },\n    \"code\": \"87854351\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor_with_2fa","description":"<p>The 2fa code must be generate from other endpoint</p>\n","urlObject":{"path":["vendors","pay_vendor_with_2fa"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"493d7fd3-ece1-4c2b-9d1e-19f019d2ae66","name":"Pay Vendor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\":\"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:46:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"106"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000212,\n    \"payload\": \"No Vendor Account Found: 2c777e8f-bbe5-4416-ad2a-e2079061a30d\"\n}"},{"id":"aa43ae29-e22b-41ed-8af7-a6ef4256b59c","name":"Pay Vendor","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"payment_account_id\": \"a130b7f5-63eb-4de1-b3ef-65375e1c813b\",\n    \"amount\": 480,\n    \"pay_currency\": \"USD\",\n    \"source_currency\": \"ETH\",\n    \"description\":\"Pay 1\",\n    \"external_memo\": \"For you\",\n    \"metadata\": {\n        \"purpose\": \"For me\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/vendors/pay_vendor"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:47:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"59"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"Payment Request Sent \"\n}"}],"_postman_id":"70827b04-9947-45f1-9fdf-0b930a7f928a"},{"name":"Get Vendor Payment Activity","id":"0e3a3c35-c0d0-4804-9ef8-535f11748f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_id\": \"31684efc-f829-40f9-ae6b-984ae899957b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_vendor_payments","description":"<p>experience is one of: TRADED_BEFORE, NEVER_TRADED_BEFORE, PREFER_NOT_DIVULGE;</p>\n","urlObject":{"path":["payments","get_vendor_payments"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"73ebcf7e-aa5f-4dcc-b69a-984d2274a523","name":"Get Vendor Payments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_id\": \"31684efc-f829-40f9-ae6b-984ae899957b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_vendor_payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:47:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"553"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"creation_time\": \"2023-07-11T06:50:46.11939+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 5,\n        \"paid_with\": \"0.0026767569697398 ETH @ 1867.932000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    },\n    {\n        \"creation_time\": \"2023-07-11T06:49:30.298482+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 4.8,\n        \"paid_with\": \"0.0025718676259733 ETH @ 1866.348000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    }\n]"}],"_postman_id":"0e3a3c35-c0d0-4804-9ef8-535f11748f5f"},{"name":"Get Vendor Account Payment Activity","id":"012cade2-629c-4873-91cd-a0fa35b88db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_vendor_account_payments","description":"<p>experience is one of: TRADED_BEFORE, NEVER_TRADED_BEFORE, PREFER_NOT_DIVULGE;</p>\n","urlObject":{"path":["payments","get_vendor_account_payments"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"582cf91f-629e-48a1-bafa-7cabb83fe34c","name":"Get Vendor Account Payments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_vendor_account_payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:48:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"553"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"creation_time\": \"2023-07-11T06:50:46.11939+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 5,\n        \"paid_with\": \"0.0026767569697398 ETH @ 1867.932000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    },\n    {\n        \"creation_time\": \"2023-07-11T06:49:30.298482+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 4.8,\n        \"paid_with\": \"0.0025718676259733 ETH @ 1866.348000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    }\n]"}],"_postman_id":"012cade2-629c-4873-91cd-a0fa35b88db5"},{"name":"Close Vendor Account","id":"6f1b6d94-5bf1-43c9-8e42-e4d553839eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_vendor_id\": \"18d011cb-1371-4bbb-bd1d-27d65720339b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/close_vendor_account","description":"<p>experience is one of: TRADED_BEFORE, NEVER_TRADED_BEFORE, PREFER_NOT_DIVULGE;</p>\n","urlObject":{"path":["payments","close_vendor_account"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"1f8056f0-0c14-413f-a0d5-e141489ef6e4","name":"Get Vendor Payments","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"vendor_id\": \"31684efc-f829-40f9-ae6b-984ae899957b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_vendor_payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jul 2023 08:47:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"553"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"creation_time\": \"2023-07-11T06:50:46.11939+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 5,\n        \"paid_with\": \"0.0026767569697398 ETH @ 1867.932000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    },\n    {\n        \"creation_time\": \"2023-07-11T06:49:30.298482+00:00\",\n        \"vendor\": \"vendor_3\",\n        \"account\": \"chase-6404-wire\",\n        \"account_id\": \"2c777e8f-bbe5-4416-ad2a-e2079061a30d\",\n        \"description\": \"Pay 1\",\n        \"amount\": 4.8,\n        \"paid_with\": \"0.0025718676259733 ETH @ 1866.348000\",\n        \"notes\": \"{\\\"purpose\\\":\\\"For me\\\"}\"\n    }\n]"}],"_postman_id":"6f1b6d94-5bf1-43c9-8e42-e4d553839eb7"}],"id":"6aad591c-cc28-4f44-87cc-ba4e58f36558","description":"<p>External Payments are defined an transfering Assets to external destinations such as banks</p>\n","_postman_id":"6aad591c-cc28-4f44-87cc-ba4e58f36558"},{"name":"In-Network Payments","item":[{"name":"Check Peer","id":"9d782107-203c-4428-921c-37dd0bd35e90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"key\":\"scataudella@bloxcross.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/v2/check_peer","description":"<p>This method returns the name, phone and email of a peer given a <strong>phone</strong> or an <strong>email</strong></p>\n<p>body:</p>\n<ul>\n<li>\"key\": can be either an <strong>email</strong> or a <strong>phone</strong> (including the country code)</li>\n</ul>\n","urlObject":{"path":["payments","v2","check_peer"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"1a371698-43be-4710-9703-63cd4483536e","name":"Check Peer Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"key\":\"me@gmail.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/v2/check_peer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jul 2023 14:05:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"76"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000212,\n    \"payload\": \"Client [me@gmail.com] Not Found\"\n}"},{"id":"22fb9efc-83f3-48fa-b58b-f9815d2f71fc","name":"Check Peer Copy","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"key\":\"usertest1.bloxcross@gmail.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/v2/check_peer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jul 2023 14:06:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"{\\\"name\\\":\\\"Juana Sofia Sosa Roncancio\\\",\\\"phone\\\":\\\"+573204567023\\\",\\\"email\\\":\\\"usertest1.bloxcross@gmail.com\\\"}\"\n}"}],"_postman_id":"9d782107-203c-4428-921c-37dd0bd35e90"},{"name":"Transfer To Peer","id":"f856c7b2-eb3c-4669-a478-812882613656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+573204567023\",\n    \"amount\": 1,\n    \"currency\": \"USD\",\n    \"code\": \"25853873\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/send2peer","description":"<ul>\n<li><p>Methond to send Value to another Blox User</p>\n</li>\n<li><p>Pre-Requisites: It requires that a 2FA code is sent to the Sending client using the clients default 2FA method. For example if the client is using SMS to validate login then the method</p>\n</li>\n<li><p>Returns</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    - Human Readable Instructions\n\n</code></pre></li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n\n</code></pre>","urlObject":{"path":["payments","send2peer"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"b1e7891d-255a-4791-b992-151fd7fad98f","name":"Transfer To Peer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+12122561693\",\n    \"amount\": 1,\n    \"currency\": \"USD\",\n    \"code\": \"83183947\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/send2peer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jul 2023 14:12:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 1000104,\n    \"payload\": \"Code Failed\"\n}"},{"id":"0c2e6a6b-6cf1-4238-a797-a868f844acca","name":"Transfer To Peer","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phone\": \"+573204567023\",\n    \"amount\": 1,\n    \"currency\": \"USD\",\n    \"code\": \"31750112\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/send2peer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 09 Jul 2023 14:20:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"104"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"Transfer [1 USD] from [Diego Baez] to [Juana Sofia Sosa Roncancio]\"\n}"}],"_postman_id":"f856c7b2-eb3c-4669-a478-812882613656"}],"id":"622b15e2-375f-4e18-84e8-34d67565f3cf","_postman_id":"622b15e2-375f-4e18-84e8-34d67565f3cf","description":""}],"id":"52a08a4f-1393-4839-8558-6ab0fa63dcd9","_postman_id":"52a08a4f-1393-4839-8558-6ab0fa63dcd9","description":""},{"name":"GET PAID","item":[{"name":"Request Payment via Email","event":[{"listen":"test","script":{"exec":["",""],"type":"text/javascript","packages":{},"id":"998691bc-108e-476c-b0e9-8cb2a587ca36"}}],"id":"e487c03f-f783-4802-98a4-fcded5d6246a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  //\"symbol\": \"BTC\",\n  \"symbol\": \"USD\",\n  \"fiatAmount\": 250,\n  \"payerEmail\": null, // Valid E-mail\n  \"payerName\": \"John Doe\",\n  \"invoiceNumber\": \"12345\",\n  \"memo\": \"Medical Assistance\",\n  \"description\": \"Home assistance to John Doe\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/credit-card-service/request-payment/email","urlObject":{"path":["credit-card-service","request-payment","email"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e487c03f-f783-4802-98a4-fcded5d6246a"}],"id":"de4fad09-65c2-4f23-b74a-ae1f3967d8da","_postman_id":"de4fad09-65c2-4f23-b74a-ae1f3967d8da","description":""},{"name":"WALLETS","item":[{"name":"Get or Create Wallet","id":"5bad4fba-2ea5-4c98-ab57-ef4a93dc6670","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"coin\":\"ETH\",\n  \"blockchain\": \"eth\"\n}"},"url":"{{apiurl}}/wallets/get_inbound_wallet","description":"<h2 id=\"endpoint-get-inbound-wallet\">Endpoint: Get Inbound Wallet</h2>\n<h3 id=\"url\">URL</h3>\n<p><code>POST https://api.blox.services/wallets/get_inbound_wallet</code></p>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n<li><code>Authorization: Bearer</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><code>coin</code> (string): The identifier for the cryptocurrency. Example: <code>\"USDC\"</code>.</li>\n<li><code>blockchain</code> (string): The blockchain network for the transaction. Example: <code>\"eth\"</code>.</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"coin\": \"USDC\",\n  \"blockchain\": \"eth\"\n}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object containing the details of the inbound wallet, including the wallet address, the blockchain network, and a QR code for easy access.</p>\n<h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"inbound_address\": \"0x907B4410bB5Ba13586C46106090831775BA826bd\",\n    \"blockchain\": \"eth\",\n    \"qr_code\": \"iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQAQAAAACoxAthAAAB+klEQVR4Xu2XMZKEMAwEfRHP4KnmqTzDEZxnJGCBvbpSiJgOjI3UjqbEblnDlOuL/5ESRUoUKVGkRJESRUoUKVGkRJECluIM/TAPS6lrK1h++nGrVSlZFTuze4aH7mm0d6cWKadzEgW58G4esfMbECeGSEpyxctlRGDYKOU9ympDYio4YmasUl6g8Mny2NjNG3DXcGqRklBxrOe8bDUpSZVPplL6kGBgOC6uSLnydMUDY+EYG/4hNGz57bDjLkvJpqDSvcqY+KTwu+zInZScCiqWmZ4LdDMwmwdugZGSSDmGRPVw+DXbcUcKyKUwHFMhA2/wHRXinpRsyh3cwCHBEJURt1pFyneeqyAhbOwfi8niAfBu4mJ/HYgUkElZ0Y2BYAlheR8hNj2kZFYIPJYnbEi1SvvrYyHl8cqCIiLBwCAr3uhyZX6kZFV45miwITEiITMnBap450hJqMx7LtBYkZXVdrwQRylpFTymAg+NzrG7/VCUkkY5WDAfHJsZ/s5vlbKVN56vLNeE2PSwZUD3l3EhJY1S+ZwHLMdosAKVcguMnaVkUK7haJ/5IVLeoGDxLwa8seGPY5PyCqXHhD8Ze2pmTg9cYyGSklXh0xUEBj24pu+QFSmZFWdAdLaF0fGq7aRkVCJIiSIlipQoUqJIiSIlipQoUqJIifILkLf6r7Kc+hsAAAAASUVORK5CYII=\"\n}\n\n</code></pre><h3 id=\"description-of-response-fields\">Description of Response Fields</h3>\n<ul>\n<li><code>inbound_address</code> (string): The address of the inbound wallet.</li>\n<li><code>blockchain</code> (string): The blockchain network associated with the wallet. Example: <code>\"eth\"</code>.</li>\n<li><code>qr_code</code> (string): A base64 encoded image of a QR code representing the inbound address for easy scanning.</li>\n</ul>\n<h3 id=\"example-curl-command\">Example cURL Command</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.blox.services/wallets/get_inbound_wallet' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Bearer ' \\\n--data '{\n  \"coin\": \"USDC\",\n  \"blockchain\": \"eth\"\n}'\n\n</code></pre><h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the <code>Authorization</code> header contains a valid JWT token.</li>\n<li>Replace with your actual JWT token.</li>\n<li>The <code>coin</code> should be specified as a string representing the cryptocurrency.</li>\n<li>The <code>blockchain</code> should be specified as a string representing the blockchain network.</li>\n</ul>\n<p>This endpoint is used to retrieve the inbound wallet address for a specific cryptocurrency on a specified blockchain network. The response includes the wallet address and a QR code for convenient access and use.</p>\n","urlObject":{"path":["wallets","get_inbound_wallet"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5bad4fba-2ea5-4c98-ab57-ef4a93dc6670"},{"name":"withdraw Coins to wallet","id":"fd036a50-e53c-4b4e-a8ff-1ddd20a99491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\":\"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\":\"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.014\n\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/withdraw_crypto","description":"<h2 id=\"endpoint-withdraw-cryptocurrency\">Endpoint: Withdraw Cryptocurrency</h2>\n<h3 id=\"url\">URL</h3>\n<p><code>POST https://api.blox.services/wallets/withdraw_crypto</code></p>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n<li><code>Authorization: Bearer</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><code>portfolio_id</code> (string): The unique identifier for the portfolio. Example: <code>\"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\"</code>.</li>\n<li><code>target_wallet_address</code> (string): The address of the target wallet to which the cryptocurrency will be sent. Example: <code>\"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\"</code>.</li>\n<li><code>token</code> (string): The identifier for the cryptocurrency. Example: <code>\"ETH\"</code>.</li>\n<li><code>blockchain</code> (string): The blockchain network for the transaction. Example: <code>\"eth\"</code>.</li>\n<li><code>qty</code> (number): The quantity of the cryptocurrency to be withdrawn. Example: <code>0.01</code>.</li>\n<li><code>fee</code> (number): The transaction fee for the withdrawal. Example: <code>0.00015</code>.</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\": \"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.01,\n    \"fee\": 0.00015\n}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object indicating the success of the withdrawal request, along with a response code and any additional payload.</p>\n<h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"\"\n}\n\n</code></pre><h3 id=\"description-of-response-fields\">Description of Response Fields</h3>\n<ul>\n<li><code>success</code> (boolean): Indicates whether the withdrawal was successful.</li>\n<li><code>code</code> (number): The response code. Example: <code>0</code>.</li>\n<li><code>payload</code> (string): Additional information or payload related to the response. In this case, it is an empty string.</li>\n</ul>\n<h3 id=\"example-curl-command\">Example cURL Command</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.blox.services/wallets/withdraw_crypto' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Bearer ' \\\n--data '{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\": \"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.01,\n    \"fee\": 0.00015\n}'\n\n</code></pre><h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the <code>Authorization</code> header contains a valid JWT token.</li>\n<li>Replace with your actual JWT token.</li>\n<li>The <code>portfolio_id</code> should be a valid UUID representing the user's portfolio.</li>\n<li>The <code>target_wallet_address</code> should be a valid wallet address on the specified blockchain.</li>\n<li>The <code>token</code> should be specified as a string representing the cryptocurrency.</li>\n<li>The <code>blockchain</code> should be specified as a string representing the blockchain network.</li>\n<li>The <code>qty</code> should be specified as a number representing the quantity of cryptocurrency to be withdrawn.</li>\n<li>The <code>fee</code> should be specified as a number representing the transaction fee for the withdrawal.</li>\n</ul>\n<p>This endpoint is used to withdraw a specified amount of cryptocurrency from a user's portfolio to a target wallet address on a specified blockchain network. The response indicates the success of the withdrawal request.</p>\n","urlObject":{"path":["wallets","withdraw_crypto"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"35042ec3-d08e-4801-a16a-a31e399a4b99","name":"withdraw Coins XLM","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\":\"GBKWVINUOPUY2AORT3AFYTOEVDWTIVVAXKYEO2CUC4FYSX2R7ZJRSQNB\",\n    \"token\":\"XLM\",\n    \"blockchain\": \"xlm\",\n    \"qty\": 0.014\n\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/wallets/withdraw_crypto"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fd036a50-e53c-4b4e-a8ff-1ddd20a99491"},{"name":"withdraw Coins 2fa Copy","id":"730f9d62-fdf6-4c67-9f77-b12094a6b7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\":\"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\":\"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.01,\n    \"fee\": 0.00015,\n    \"code\": \"316898\"\n\n\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/withdraw_with_2fa","description":"<h2 id=\"endpoint-withdraw-cryptocurrency-with-2fa\">Endpoint: Withdraw Cryptocurrency with 2FA</h2>\n<h3 id=\"url\">URL</h3>\n<p><code>POST https://api.blox.services/wallets/withdraw_with_2fa</code></p>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n<li><code>Authorization: Bearer</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><code>portfolio_id</code> (string): The unique identifier for the portfolio. Example: <code>\"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\"</code>.</li>\n<li><code>target_wallet_address</code> (string): The address of the target wallet to which the cryptocurrency will be sent. Example: <code>\"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\"</code>.</li>\n<li><code>token</code> (string): The identifier for the cryptocurrency. Example: <code>\"ETH\"</code>.</li>\n<li><code>blockchain</code> (string): The blockchain network for the transaction. Example: <code>\"eth\"</code>.</li>\n<li><code>qty</code> (number): The quantity of the cryptocurrency to be withdrawn. Example: <code>0.01</code>.</li>\n<li><code>fee</code> (number): The transaction fee for the withdrawal. Example: <code>0.00015</code>.</li>\n<li><code>code</code> (string): The 2FA code required for authorization. Example: <code>\"316898\"</code>.</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\": \"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.01,\n    \"fee\": 0.00015,\n    \"code\": \"316898\"\n}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object indicating the success of the withdrawal request, along with a response code and any additional payload.</p>\n<h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"code\": 0,\n    \"payload\": \"\"\n}\n\n</code></pre><h3 id=\"description-of-response-fields\">Description of Response Fields</h3>\n<ul>\n<li><code>success</code> (boolean): Indicates whether the withdrawal was successful.</li>\n<li><code>code</code> (number): The response code. Example: <code>0</code>.</li>\n<li><code>payload</code> (string): Additional information or payload related to the response. In this case, it is an empty string.</li>\n</ul>\n<h3 id=\"example-curl-command\">Example cURL Command</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.blox.services/wallets/withdraw_with_2fa' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Bearer ' \\\n--data '{\n    \"portfolio_id\": \"97429fa8-4bf1-46c4-a28c-bf4b7a1494ba\",\n    \"target_wallet_address\": \"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"token\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"qty\": 0.01,\n    \"fee\": 0.00015,\n    \"code\": \"316898\"\n}'\n\n</code></pre><h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the <code>Authorization</code> header contains a valid JWT token.</li>\n<li>Replace with your actual JWT token.</li>\n<li>The <code>portfolio_id</code> should be a valid UUID representing the user's portfolio.</li>\n<li>The <code>target_wallet_address</code> should be a valid wallet address on the specified blockchain.</li>\n<li>The <code>token</code> should be specified as a string representing the cryptocurrency.</li>\n<li>The <code>blockchain</code> should be specified as a string representing the blockchain network.</li>\n<li>The <code>qty</code> should be specified as a number representing the quantity of cryptocurrency to be withdrawn.</li>\n<li>The <code>fee</code> should be specified as a number representing the transaction fee for the withdrawal.</li>\n<li>The <code>code</code> should be specified as a string representing the 2FA code required for authorization.</li>\n</ul>\n<p>This endpoint is used to withdraw a specified amount of cryptocurrency from a user's portfolio to a target wallet address on a specified blockchain network, with an additional layer of security provided by two-factor authentication (2FA). The response indicates the success of the withdrawal request.</p>\n","urlObject":{"path":["wallets","withdraw_with_2fa"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"730f9d62-fdf6-4c67-9f77-b12094a6b7ff"},{"name":"Get token inbound Networks","id":"34ff3608-623a-4dee-b55f-af5182c7a49e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coin\": \"BTC\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/get_inbound_networks_for_token","description":"<h2 id=\"get-inbound-networks-for-token\">Get Inbound Networks for Token</h2>\n<p>This endpoint allows users to retrieve information about the inbound networks available for a specified cryptocurrency token.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/wallets/get_inbound_networks_for_token</code></p>\n</li>\n<li><p><strong>Request Body</strong>: The request must include a JSON payload with the following structure:</p>\n<ul>\n<li><code>coin</code> (string): The symbol of the cryptocurrency for which the inbound networks are being queried (e.g., \"BTC\" for Bitcoin).</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"coin\": \"BTC\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the server will respond with a status code of <code>200</code> and a JSON array containing details about the inbound networks for the specified token. The structure of the response is as follows:</p>\n<ul>\n<li><p>An array of objects, where each object contains:</p>\n<ul>\n<li><p><code>coin</code> (string): The symbol of the cryptocurrency.</p>\n</li>\n<li><p><code>blockchain</code> (string): The blockchain associated with the token.</p>\n</li>\n<li><p><code>native_token</code> (boolean): Indicates if the token is a native token on the blockchain.</p>\n</li>\n<li><p><code>description</code> (string): A brief description of the token or network.</p>\n</li>\n<li><p><code>wallet_direction</code> (string): The direction of the wallet (e.g., inbound or outbound).</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"coin\": \"\",\n    \"blockchain\": \"\",\n    \"native_token\": true,\n    \"description\": \"\",\n    \"wallet_direction\": \"\"\n  }\n]\n\n</code></pre>\n<p>This endpoint is useful for developers and users who need to understand the available networks for a specific cryptocurrency, enabling them to make informed decisions regarding wallet operations.</p>\n","urlObject":{"path":["wallets","get_inbound_networks_for_token"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34ff3608-623a-4dee-b55f-af5182c7a49e"},{"name":"Get token Outbound Networks","id":"346ecc72-ea88-404f-b2f3-04a1cc5d780f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"coin\": \"BTC\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/get_outbound_networks_for_token","description":"<h2 id=\"get-outbound-networks-for-token\">Get Outbound Networks for Token</h2>\n<p>This endpoint retrieves the outbound networks associated with a specified cryptocurrency token. It is particularly useful for applications that need to understand the available networks for transferring a given token.</p>\n<h3 id=\"request\">Request</h3>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>URL</strong>: <code>{{apiurl}}/wallets/get_outbound_networks_for_token</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be in JSON format and should include the following parameter:</p>\n<ul>\n<li><strong>coin</strong> (string, required): The symbol of the cryptocurrency for which you want to retrieve the outbound networks. For example, to get networks for Bitcoin, you would set this to <code>\"BTC\"</code>.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"coin\": \"BTC\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>On a successful request, the server responds with a status code of 200 and a JSON array containing the outbound networks for the specified token. The structure of the response is as follows:</p>\n<ul>\n<li><p><strong>coin</strong> (string): The symbol of the cryptocurrency.</p>\n</li>\n<li><p><strong>blockchain</strong> (string): The blockchain associated with the outbound network.</p>\n</li>\n<li><p><strong>native_token</strong> (boolean): Indicates whether the token is a native token on the blockchain.</p>\n</li>\n<li><p><strong>description</strong> (string): A brief description of the network.</p>\n</li>\n<li><p><strong>wallet_direction</strong> (string): The direction of the wallet (e.g., inbound or outbound).</p>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"coin\": \"\",\n    \"blockchain\": \"\",\n    \"native_token\": true,\n    \"description\": \"\",\n    \"wallet_direction\": \"\"\n  }\n]\n\n</code></pre>\n<h3 id=\"summary\">Summary</h3>\n<p>This endpoint is essential for applications that need to facilitate transactions involving specific cryptocurrencies, allowing developers to dynamically retrieve network information based on the token provided.</p>\n","urlObject":{"path":["wallets","get_outbound_networks_for_token"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"346ecc72-ea88-404f-b2f3-04a1cc5d780f"},{"name":"Validate Address","id":"267cddfe-69d4-4bfa-8470-d47dddba3868","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"coin\": \"usdt\",\n  \"blockchain\": \"trx\",\n  \"address2validate\": \"TJFxhq46QwTpXbA1dq9nNbzFfKgSmmWFVd\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/validate_address","description":"<p>Returns the levels of service and fee for each, for example:</p>\n<p>{</p>\n<p>\"standard\":{\"fee\":0.001,\"estimated_time\":10000},</p>\n<p>\"fast\": {\"fee\":0.01,\"estimated_time\":5000},</p>\n<p>\"expedited\": {\"fee\":0.015,\"estimated_time\":1000}</p>\n<p>\"fee_optimized\": {\"fee\":0.005,\"estimated_time\":25000},</p>\n<p>}</p>\n","urlObject":{"path":["wallets","validate_address"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"267cddfe-69d4-4bfa-8470-d47dddba3868"},{"name":"validate_address_btrace","id":"47a06be8-635b-487f-b778-a9bb4ba41baf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"address2validate\" : \"0xae835a376cbc417bea93c146ce5b8e9c835b3851\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/validate_address_btrace","description":"<h3 id=\"validate-wallet-address\">Validate Wallet Address</h3>\n<p>This endpoint validates a cryptocurrency wallet address to ensure it is correctly formatted and potentially usable. It is specifically designed to check the validity of addresses for a given blockchain.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: POST</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiurl}}/wallets/validate_address_btrace</code></p>\n</li>\n<li><p><strong>Content-Type</strong>: application/json</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request body should be a JSON object containing the following parameter:</p>\n<ul>\n<li><strong><code>address2validate</code></strong> (string): The wallet address that needs to be validated. This address should conform to the expected format for the specific blockchain.</li>\n</ul>\n<p><strong>Example Request Body</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"address2validate\": \"0xae835a376cbc417bea93c146ce5b ...\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>On successful validation, the API responds with a JSON object structured as follows:</p>\n<ul>\n<li><p><strong><code>success</code></strong> (boolean): Indicates whether the validation was successful.</p>\n</li>\n<li><p><strong><code>code</code></strong> (integer): A status code representing the result of the validation.</p>\n</li>\n<li><p><strong><code>payload</code></strong> (string): Additional information or data related to the validation (if applicable). This may be empty.</p>\n</li>\n</ul>\n<p><strong>Example Response</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"code\": 0,\n  \"payload\": \"\"\n}\n\n</code></pre>\n<h4 id=\"status-codes\">Status Codes</h4>\n<ul>\n<li><p><strong>200 OK</strong>: The request was successful, and the address is valid.</p>\n</li>\n<li><p>Other status codes may indicate errors or issues with the request.</p>\n</li>\n</ul>\n<p>This endpoint is useful for applications that require validation of wallet addresses before performing transactions or other operations involving cryptocurrency.</p>\n","urlObject":{"path":["wallets","validate_address_btrace"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"46a9fba8-d89d-4663-880d-9fa63c92cc5a","name":"valid address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"address2validate\" : \"1AN3AMhN6rfKhtDcYAaoBEsTdNbBfFB5uw\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/wallets/validate_address_btrace"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"47a06be8-635b-487f-b778-a9bb4ba41baf"},{"name":"btrace-risk_score","id":"2b03972f-f399-4ed9-a898-d7f8a39d889e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-API-Key","value":"F272BC1381511CA8343093A4F3BA9EDA14C0B673","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"0xae835a376cbc417bea93c146ce5b8e9c835b3851\"\n}","options":{"raw":{"language":"json"}}},"url":"https://btrace.amlcrypto.io/api/v2/risk_score","urlObject":{"protocol":"https","path":["api","v2","risk_score"],"host":["btrace","amlcrypto","io"],"query":[],"variable":[]}},"response":[{"id":"7b0de32b-ae71-4ac8-9818-568c86a73b8b","name":"btrace-risk_score-455","originalRequest":{"method":"POST","header":[{"key":"accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\"\n}","options":{"raw":{"language":"json"}}},"url":"https://btrace.amlcrypto.io/api/v2/risk_score"},"code":455,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"This address has no transactions\"\n}"},{"id":"6ef1b3ab-28c3-46d9-974a-ae7064791214","name":"btrace-risk_score-200","originalRequest":{"method":"POST","header":[{"key":"accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"0xae835a376cbc417bea93c146ce5b8e9c835b3851\"\n}","options":{"raw":{"language":"json"}}},"url":"https://btrace.amlcrypto.io/api/v2/risk_score"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"address\": \"0xae835a376cbc417bea93c146ce5b8e9c835b3851\",\n    \"report_hash\": \"100b5eb8-27e1-42ef-9936-7105e3bb27a5\",\n    \"check_date\": \"2024-12-04 11:30:59\",\n    \"data\": {\n        \"risk_level\": \"Medium\",\n        \"risk_score\": 69,\n        \"transactions\": {\n            \"description\": \"No info\",\n            \"value\": 20,\n            \"details\": null\n        },\n        \"counterparty\": {\n            \"description\": \"Interact with high risk addresses\",\n            \"value\": 77,\n            \"details\": [\n                {\n                    \"address\": \"0x5984c42f1c8514a75e9e5a236f14b3f705d0e2e9\",\n                    \"type\": \"sanctions\",\n                    \"address_name\": \"Garantex_deposit_0x5984\"\n                },\n                {\n                    \"address\": \"0x178a7e3c51f26b6f232fc35b7c8fae84be27d814\",\n                    \"type\": \"sanctions\",\n                    \"address_name\": \"Garantex_deposit_0x178a\"\n                },\n                {\n                    \"address\": \"0x332cdbe24c2cf4e774b804ab20e36d3b33da78d8\",\n                    \"type\": \"sanctions\",\n                    \"address_name\": \"Garantex_deposit_0x332c\"\n                },\n                {\n                    \"address\": \"0x3349f4fb93f1898197d3714f3f5764551996621a\",\n                    \"type\": \"sanctions\",\n                    \"address_name\": \"Garantex_deposit_0x3349\"\n                },\n                {\n                    \"address\": \"0xa27782b40f4db1675f8d6edaf6bf7560bd31f943\",\n                    \"type\": \"sanctions\",\n                    \"address_name\": \"Garantex_deposit_0xa277\"\n                }\n            ]\n        },\n        \"social_rating\": {\n            \"description\": \"This address is assigned to account on btrace.amlcrypto.io\",\n            \"value\": 34,\n            \"details\": null\n        }\n    }\n}"},{"id":"5755b0c0-92b0-4708-9166-c93a8a6c99b3","name":"btrace-risk_score-422","originalRequest":{"method":"POST","header":[{"key":"accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-API-Key","value":"F272BC1381511CA8343093A4F3BA9EDA14C0B673","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"0xae835a376cbc417bea93c146ce5b8e9c835b3851\"\n}","options":{"raw":{"language":"json"}}},"url":"https://btrace.amlcrypto.io/api/v2/risk_score"},"code":422,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"string\",\n        0\n      ],\n      \"msg\": \"string\",\n      \"type\": \"string\"\n    }\n  ]\n}"}],"_postman_id":"2b03972f-f399-4ed9-a898-d7f8a39d889e"},{"name":"EstimateFee","id":"00af6c33-4256-45ea-8fa4-a71e397b67fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"assetId\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"amount\": \"0.100000\" \n}\n"},"url":"{{apiurl}}/wallets/estimateFee","description":"<h2 id=\"endpoint-estimate-fee\">Endpoint: Estimate Fee</h2>\n<h3 id=\"url\">URL</h3>\n<p><code>POST https://api.blox.services/wallets/estimateFee</code></p>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n<li><code>Authorization: Bearer</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><code>assetId</code> (string): The identifier for the asset. Example: <code>\"ETH\"</code>.</li>\n<li><code>blockchain</code> (string): The blockchain network for the transaction. Example: <code>\"eth\"</code>.</li>\n<li><code>amount</code> (string): The amount of the asset to be transferred. Example: <code>\"0.100000\"</code>.</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"assetId\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"amount\": \"0.100000\"\n}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object containing the estimated fees for different levels of transaction urgency. Each level will include the cost of the transaction in the same asset as specified in the request.</p>\n<h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"urgent\": {\n        \"cost\": \"0.0004664341038\"\n    },\n    \"fast\": {\n        \"cost\": \"0.0004664341038\"\n    },\n    \"normal\": {\n        \"cost\": \"0.0004664341038\"\n    }\n}\n\n</code></pre><h3 id=\"description-of-response-fields\">Description of Response Fields</h3>\n<ul>\n<li><code>urgent</code> (object): Contains the cost of the transaction if processed urgently.<ul>\n<li><code>cost</code> (string): The estimated fee for an urgent transaction.</li>\n</ul>\n</li>\n<li><code>fast</code> (object): Contains the cost of the transaction if processed quickly but not as urgent.<ul>\n<li><code>cost</code> (string): The estimated fee for a fast transaction.</li>\n</ul>\n</li>\n<li><code>normal</code> (object): Contains the cost of the transaction if processed normally.<ul>\n<li><code>cost</code> (string): The estimated fee for a normal transaction.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-curl-command\">Example cURL Command</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.blox.services/wallets/estimateFee' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Bearer ' \\\n--data '{\n    \"assetId\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"amount\": \"0.100000\"\n}'\n\n</code></pre><h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the <code>Authorization</code> header contains a valid JWT token.</li>\n<li>Replace with your actual JWT token.</li>\n<li>The <code>amount</code> should be specified as a string to ensure precision is maintained.</li>\n</ul>\n<p>This endpoint is used to estimate the transaction fee for transferring a specified amount of an asset on a particular blockchain network. The response provides fee estimates for different levels of urgency, allowing users to choose the most appropriate option for their needs.</p>\n","urlObject":{"path":["wallets","estimateFee"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"d7e0d2e1-81ce-49e4-b0f3-850894ab801f","name":"EstimatedFee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"assetId\": \"USDT\",\n    \"blockchain\": \"eth\" \n}"},"url":"https://api.bloxcross-dev.com/v2/fireblocks/estimatedFee"},"status":"Ok","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Apr 2024 23:22:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"86"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Request-ID","value":"c90659c8d9c064f82e966635bcd7fb87"},{"key":"ETag","value":"W/\"56-5G8HeTRnHoFbrYWiAO2Tt42mSp8\""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"low\": {\n        \"gasPrice\": \"5.004\"\n    },\n    \"medium\": {\n        \"gasPrice\": \"5.004\"\n    },\n    \"high\": {\n        \"gasPrice\": \"5.004\"\n    }\n}"}],"_postman_id":"00af6c33-4256-45ea-8fa4-a71e397b67fa"},{"name":"calculateFee","id":"c4cbb216-8e23-4f70-9e23-218bf9d06e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"assetId\": \"USDT\",\n    \"blockchain\": \"trx\",\n    \"amount\": \"0.100000\" \n}\n"},"url":"{{apiurl}}/wallets/calculateFee","description":"<h2 id=\"endpoint-estimate-fee\">Endpoint: Estimate Fee</h2>\n<h3 id=\"url\">URL</h3>\n<p><code>POST https://api.blox.services/wallets/estimateFee</code></p>\n<h3 id=\"headers\">Headers</h3>\n<ul>\n<li><code>Content-Type: application/json</code></li>\n<li><code>Authorization: Bearer</code></li>\n</ul>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be a JSON object containing the following parameters:</p>\n<ul>\n<li><code>assetId</code> (string): The identifier for the asset. Example: <code>\"ETH\"</code>.</li>\n<li><code>blockchain</code> (string): The blockchain network for the transaction. Example: <code>\"eth\"</code>.</li>\n<li><code>amount</code> (string): The amount of the asset to be transferred. Example: <code>\"0.100000\"</code>.</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"assetId\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"amount\": \"0.100000\"\n}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be a JSON object containing the estimated fees for different levels of transaction urgency. Each level will include the cost of the transaction in the same asset as specified in the request.</p>\n<h4 id=\"example-1\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"urgent\": {\n        \"cost\": \"0.0004664341038\"\n    },\n    \"fast\": {\n        \"cost\": \"0.0004664341038\"\n    },\n    \"normal\": {\n        \"cost\": \"0.0004664341038\"\n    }\n}\n\n</code></pre><h3 id=\"description-of-response-fields\">Description of Response Fields</h3>\n<ul>\n<li><code>urgent</code> (object): Contains the cost of the transaction if processed urgently.<ul>\n<li><code>cost</code> (string): The estimated fee for an urgent transaction.</li>\n</ul>\n</li>\n<li><code>fast</code> (object): Contains the cost of the transaction if processed quickly but not as urgent.<ul>\n<li><code>cost</code> (string): The estimated fee for a fast transaction.</li>\n</ul>\n</li>\n<li><code>normal</code> (object): Contains the cost of the transaction if processed normally.<ul>\n<li><code>cost</code> (string): The estimated fee for a normal transaction.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"example-curl-command\">Example cURL Command</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.blox.services/wallets/estimateFee' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Bearer ' \\\n--data '{\n    \"assetId\": \"ETH\",\n    \"blockchain\": \"eth\",\n    \"amount\": \"0.100000\"\n}'\n\n</code></pre><h3 id=\"notes\">Notes</h3>\n<ul>\n<li>Ensure that the <code>Authorization</code> header contains a valid JWT token.</li>\n<li>Replace with your actual JWT token.</li>\n<li>The <code>amount</code> should be specified as a string to ensure precision is maintained.</li>\n</ul>\n<p>This endpoint is used to estimate the transaction fee for transferring a specified amount of an asset on a particular blockchain network. The response provides fee estimates for different levels of urgency, allowing users to choose the most appropriate option for their needs.</p>\n","urlObject":{"path":["wallets","calculateFee"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"631387c9-ce1a-4fdf-affb-687f78ed2679","name":"EstimatedFee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"assetId\": \"USDT\",\n    \"blockchain\": \"eth\" \n}"},"url":"https://api.bloxcross-dev.com/v2/fireblocks/estimatedFee"},"status":"Ok","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Apr 2024 23:22:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"86"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"X-Request-ID","value":"c90659c8d9c064f82e966635bcd7fb87"},{"key":"ETag","value":"W/\"56-5G8HeTRnHoFbrYWiAO2Tt42mSp8\""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"low\": {\n        \"gasPrice\": \"5.004\"\n    },\n    \"medium\": {\n        \"gasPrice\": \"5.004\"\n    },\n    \"high\": {\n        \"gasPrice\": \"5.004\"\n    }\n}"}],"_postman_id":"c4cbb216-8e23-4f70-9e23-218bf9d06e7f"},{"name":"convert_Estimate","id":"61917e4d-e15a-43af-a5d3-16a8c768b09b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"amount\": \"0.010\",\n    \"from_currency\": \"ETH_TEST5\",\n    \"to_currency\": \"USD\",\n    \"desired_lock_time_in_secs\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_estimate","description":"<h3 id=\"convert-estimate\">Convert Estimate</h3>\n<p>This endpoint is used to estimate the conversion of one currency to another within a specified lock time.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>amount</code> (number): The amount of currency to be converted.</p>\n</li>\n<li><p><code>from_currency</code> (string): The currency code from which the conversion will be made.</p>\n</li>\n<li><p><code>to_currency</code> (string): The currency code to which the conversion will be made.</p>\n</li>\n<li><p><code>desired_lock_time_in_secs</code> (number): The desired lock time for the conversion in seconds.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"amount\": 1,\n    \"from_currency\": \"ETH\",\n    \"to_currency\": \"USD\",\n    \"desired_lock_time_in_secs\": 10\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON object with the estimated details of the conversion process.</p>\n<h4 id=\"response-schema\">Response Schema</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"estimated_amount\": {\n            \"type\": \"number\",\n            \"description\": \"The estimated amount of the target currency after conversion.\"\n        },\n        \"estimated_fee\": {\n            \"type\": \"number\",\n            \"description\": \"The estimated fee for the conversion.\"\n        },\n        \"lock_time_in_secs\": {\n            \"type\": \"number\",\n            \"description\": \"The lock time for the conversion in seconds.\"\n        }\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["portfolio","swap","convert_estimate"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"61917e4d-e15a-43af-a5d3-16a8c768b09b"},{"name":"External_wallet","id":"e412b166-0f21-4925-b2bf-8a915702c4a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"••••••"}],"body":{"mode":"raw","raw":"{\n    \"address\":\"0xcD82656b537189E76d54Eaf34df2B04209BdD8fA\",\n    \"currency\":\"ETH\",\n    \"blockchain\":\"eth\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/v2/fireblocks/external_wallet","description":"<h3 id=\"create-external-wallet\">Create External Wallet</h3>\n<p>This endpoint allows you to create an external wallet for the Fireblocks platform.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>address</code> (string): The address of the external wallet.</p>\n</li>\n<li><p><code>currency</code> (string): The currency of the external wallet.</p>\n</li>\n<li><p><code>blockchain</code> (string): The blockchain of the external wallet.</p>\n</li>\n</ul>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"address\": \"0xcD82656b537189E76d54Eaf34df2 ...\",\n    \"currency\": \"ETH\",\n    \"blockchain\": \"eth\"\n}\n\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request is not available. However, you can refer to the JSON schema for the response structure.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"status\": {\n            \"type\": \"string\"\n        },\n        \"walletId\": {\n            \"type\": \"string\"\n        }\n        // Add more properties as per the actual response\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["v2","fireblocks","external_wallet"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"6c58ad0f-c765-41ab-9756-c25820d896ed","name":"External_wallet ETH eth","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"••••••"}],"body":{"mode":"raw","raw":"{\n    \"address\":\"0x13D49BbBFB085083F00C0190072651a05301Ba0C\",\n    \"currency\":\"ETH\",\n    \"blockchain\":\"eth\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/v2/fireblocks/external_wallet"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"3646a9b1-4942-4b11-9787-c8b4bf9142d8","name":"External_wallet BTC btc","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"••••••"}],"body":{"mode":"raw","raw":"{\n    \"address\":\"tb1qsde3sn7num5rrh68q3832au8yj0ywm02nr9590\",\n    \"currency\":\"BTC\",\n    \"blockchain\":\"btc\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/v2/fireblocks/external_wallet"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e412b166-0f21-4925-b2bf-8a915702c4a5"}],"id":"cc42dce0-b409-4272-8733-12b4b611d95b","_postman_id":"cc42dce0-b409-4272-8733-12b4b611d95b","description":""},{"name":"ASSETS","item":[{"name":"Get Deep Portolio Info","event":[{"listen":"test","script":{"exec":["",""],"type":"text/javascript","id":"db0fd906-d885-4456-bb6a-d42b754d6902"}}],"id":"277330fe-98d1-4003-92fe-7b527a42c632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/portfolio/get_deep_portfolio_info","urlObject":{"path":["portfolio","get_deep_portfolio_info"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"277330fe-98d1-4003-92fe-7b527a42c632"},{"name":"Get Potffolio Balances","id":"633d32fe-4217-4af4-8462-dde9cf911c30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/get_portfolio_balances","description":"<p>Get current Balances for all assets in the portfolio.  </p>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>Parameters in Body: \n  {\n  \"portfolio_name\": \"\"\n  }</p>\n<ul>\n<li>Example:\n  {\n  \"portfolio_name\": \"Tracking\"\n  }</li>\n</ul>\n</li>\n<li><p>Return: for each asset one entry with:<br />  {\n  \"base_currency\": \"\",\n  \"qty\": ,\n  \"pnl\": \n  }</p>\n<ul>\n<li>Example: \n  [\n  [\n  {\n      \"base_currency\": \"BTC\",\n      \"qty\": 0.0,\n      \"pnl\": 7.500\n  },\n  {\n      \"base_currency\": \"USD\",\n      \"qty\": 90304.480,\n      \"pnl\": 0\n  }\n  ]\n  ]</li>\n</ul>\n</li>\n</ul>\n<p>If the asset is currency, such as USD-USD then the PNL will always be Zero (0).\nThe pnl is calculated across all transactions since portfolio was opened. \nTo get the current pnl do as follows:</p>\n<ul>\n<li>qty = 0   =&gt; current_pnl = pnl</li>\n<li>qty &gt; 0   =&gt; current_pnl = (pnl)+(qty*currnet_asset_market_price)</li>\n</ul>\n","urlObject":{"path":["portfolio","get_portfolio_balances"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"633d32fe-4217-4af4-8462-dde9cf911c30"},{"name":"Get Portfolio Transactions","id":"08969262-ffa8-495e-a956-c6c0d1b79bce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/get_portfolio_transactions","description":"<ul>\n<li>Get all transactions for a portfolio, one by one.</li>\n<li>Method: POST</li>\n<li>Parameters: <ul>\n<li>{\"portfolio_name\": \"\"}</li>\n<li>Example: {\"portfolio_name\": \"Tracking\"}</li>\n</ul>\n</li>\n<li>Returns: For each transaction:\n      {\n      \"portfolio_id\": \"b0d40b46-adb8-420d-8158-6493ca1d29b3\",\n      \"qty\": 1.5,\n      \"symbol\": \"BTC-USD\",\n      \"transaction_id\": 213578159726241,\n      \"price\": 3231.34,\n      \"from\": \"7c2f55ac-571c-46a1-a780-37df9b36e203\",\n      \"to\": \"b0d40b46-adb8-420d-8158-6493ca1d29b3\",\n      \"transaction_type\": \"BUY\",\n      \"data\": {},\n      \"base_currency\": \"BTC\"\n  }</li>\n</ul>\n","urlObject":{"path":["portfolio","get_portfolio_transactions"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"08969262-ffa8-495e-a956-c6c0d1b79bce"},{"name":"Get Potffolio Balances For Symbol","id":"e1969c56-6d32-4e36-93bc-fb4e7a50ecc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"portfolio_name\": \"My Portfolio\",\n\"symbol\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/portfolio/get_portfolio_balances_for_symbol","description":"<p>Get current Balances for all assets in the portfolio.  </p>\n<ul>\n<li><p>Method: POST</p>\n</li>\n<li><p>Parameters in Body: \n  {\n  \"portfolio_name\": \"\"\n  }</p>\n<ul>\n<li>Example:\n  {\n  \"portfolio_name\": \"Tracking\"\n  }</li>\n</ul>\n</li>\n<li><p>Return: for each asset one entry with:<br />  {\n  \"base_currency\": \"\",\n  \"qty\": ,\n  \"pnl\": \n  }</p>\n<ul>\n<li>Example: \n  [\n  [\n  {\n      \"base_currency\": \"BTC\",\n      \"qty\": 0.0,\n      \"pnl\": 7.500\n  },\n  {\n      \"base_currency\": \"USD\",\n      \"qty\": 90304.480,\n      \"pnl\": 0\n  }\n  ]\n  ]</li>\n</ul>\n</li>\n</ul>\n<p>If the asset is currency, such as USD-USD then the PNL will always be Zero (0).\nThe pnl is calculated across all transactions since portfolio was opened. \nTo get the current pnl do as follows:</p>\n<ul>\n<li>qty = 0   =&gt; current_pnl = pnl</li>\n<li>qty &gt; 0   =&gt; current_pnl = (pnl)+(qty*currnet_asset_market_price)</li>\n</ul>\n","urlObject":{"protocol":"https","path":["portfolio","get_portfolio_balances_for_symbol"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1969c56-6d32-4e36-93bc-fb4e7a50ecc2"},{"name":"Get Transactions for Symbol","id":"0fb407d9-34d6-46b4-83b3-1d35a063c0da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_name\": \"My Portfolio\",\n    \"symbol\": \"USD\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/portfolio/portfolio_transactions_for_symbol","urlObject":{"protocol":"https","path":["portfolio","portfolio_transactions_for_symbol"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fb407d9-34d6-46b4-83b3-1d35a063c0da"},{"name":"Get Default Portfolio","id":"e41ce0d9-753b-4b0f-947d-a2efd60364ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/portfolio/get_default","urlObject":{"path":["portfolio","get_default"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e41ce0d9-753b-4b0f-947d-a2efd60364ed"},{"name":"List All Portfolios","id":"294d5ca9-2974-4e8c-a48d-3d968d994319","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/portfolio/get_all_portfolios","urlObject":{"path":["portfolio","get_all_portfolios"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"294d5ca9-2974-4e8c-a48d-3d968d994319"},{"name":"Get Deep Portfolio Info (Pageable)","id":"83746b0f-87d7-46ef-b0b1-8a51d2623543","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"page\": 0,\n    \"size\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/get_deep_portfolio_info_pageable?page=0&size=50","urlObject":{"path":["portfolio","get_deep_portfolio_info_pageable"],"host":["{{apiurl}}"],"query":[{"key":"page","value":"0"},{"key":"size","value":"50"}],"variable":[]}},"response":[],"_postman_id":"83746b0f-87d7-46ef-b0b1-8a51d2623543"}],"id":"46196613-b273-44c0-9a0b-704a998b4537","_postman_id":"46196613-b273-44c0-9a0b-704a998b4537","description":""},{"name":"CONVERT","item":[{"name":"Conversion Estimate","id":"835e304a-687d-443e-8ca0-20d34bbd8131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 1000,\n    \"from_currency\": \"USDT\",\n    \"to_currency\": \"ETH\",\n    \"desired_lock_time_in_secs\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_estimate","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_estimate"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"835e304a-687d-443e-8ca0-20d34bbd8131"},{"name":"Reverse-Conversion Estimate","id":"e7f3d833-9006-447d-9835-38cfdbf6d77f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount_to_receive\": 98.90,\n    \"from_currency\": \"USDT\",\n    \"to_currency\": \"USD\",\n    \"desired_lock_time_in_secs\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_estimate_reverse","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_estimate_reverse"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7f3d833-9006-447d-9835-38cfdbf6d77f"},{"name":"Lock Conversion","id":"8a6fb615-a180-4702-ae2c-7bf1880cef1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 50,\n    \"from_currency\": \"USDT\",\n    \"to_currency\": \"USD\",\n    \"desired_lock_time_in_secs\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_lock","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_lock"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a6fb615-a180-4702-ae2c-7bf1880cef1d"},{"name":"Lock Reverse-Conversion","id":"867d77af-2f6b-4a3d-b7a0-a001cff8d442","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount_to_receive\": 750,\n    \"from_currency\": \"USDT\",\n    \"to_currency\": \"USD\",\n    \"desired_lock_time_in_secs\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_lock_reverse","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_lock_reverse"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"867d77af-2f6b-4a3d-b7a0-a001cff8d442"},{"name":"Get My Locked Rates","id":"68bea3a6-6318-40a7-9c6d-f2175ac6fd85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_get_my_locked","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_get_my_locked"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68bea3a6-6318-40a7-9c6d-f2175ac6fd85"},{"name":"Asset Sent for Rate Locked","id":"2aec6d68-ffff-43bf-b639-d32bfa50d5b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"locked_rate_id\": \"9ad42358-e5e1-4cea-92ce-7af6a54fa1f8\",\n    \"txhash\": \"Tdsa;JDWJQ0272DNQ[DSLAs\",\n    \"amount\": 50\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_execute","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_execute"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2aec6d68-ffff-43bf-b639-d32bfa50d5b9"},{"name":"Convert with Estimate","id":"a8d2186f-9de7-4ebd-aad0-cfa6eade23c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"locked_rate_id\": \"8f4ce59e-d118-48cc-96ca-30a3e416f507\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_with_estimate","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_with_estimate"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8d2186f-9de7-4ebd-aad0-cfa6eade23c8"},{"name":"Cancel Locked Rate","id":"b1c5e89a-b60e-4f69-9875-b6c0f8aab0f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"locked_rate_id\": \"82ab4b54-dc46-4283-b7ce-0977de427de8\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert_cancel","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert_cancel"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1c5e89a-b60e-4f69-9875-b6c0f8aab0f2"},{"name":"Convert Now","id":"5993e6f9-ee8e-4711-9862-5d21e0fbb600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"amount\": 2000,\n    \"from_currency\": \"COP\",\n    \"to_currency\": \"ETH\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/swap/convert","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["portfolio","swap","convert"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5993e6f9-ee8e-4711-9862-5d21e0fbb600"}],"id":"99d21da5-29cb-4b1c-917a-23e3abf1c683","_postman_id":"99d21da5-29cb-4b1c-917a-23e3abf1c683","description":""},{"name":"REFERENTIAL DATA","item":[{"name":"REFDATA","item":[{"name":"Get List of Countries Enabled","id":"8f5eaf0a-d086-45d6-b8aa-f9b3e711b9d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/refdata/countries","urlObject":{"path":["refdata","countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f5eaf0a-d086-45d6-b8aa-f9b3e711b9d0"},{"name":"Get List of All Countries","id":"145c6ac4-0829-4dae-b328-68aee2849636","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{api:jwt}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/refdata/all_countries","urlObject":{"path":["refdata","all_countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"145c6ac4-0829-4dae-b328-68aee2849636"},{"name":"Get List of Currencies","id":"7f87607d-4f28-4f73-94fe-40f59a483d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.bloxcross-dev.com/refdata/currencies","urlObject":{"protocol":"https","path":["refdata","currencies"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f87607d-4f28-4f73-94fe-40f59a483d83"},{"name":"Get List of Languages","id":"53a53008-a8ec-4bc5-9305-29b27ede3c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/refdata/languages","urlObject":{"path":["refdata","languages"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53a53008-a8ec-4bc5-9305-29b27ede3c8c"},{"name":"Get Exchange TIme","id":"55bde6c6-e0ef-4936-8144-85b8b61aa090","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.bloxcross-dev.com/refdata/time","urlObject":{"protocol":"https","path":["refdata","time"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"55bde6c6-e0ef-4936-8144-85b8b61aa090"},{"name":"Get All Products","id":"79466d73-0335-45a7-8dd4-35ffdc5709df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/md_ref_data/get_all_products","urlObject":{"path":["md_ref_data","get_all_products"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79466d73-0335-45a7-8dd4-35ffdc5709df"},{"name":"Get Available Countries","id":"736d74c6-1632-4097-8d07-9711ffb2b338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n\"direction\": \"out\",\n\"country_code\": \"CO\",\n\"paymentMethodType\": \"bank\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_available_countries","urlObject":{"path":["payments","get_available_countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"736d74c6-1632-4097-8d07-9711ffb2b338"}],"id":"8c1e5408-7360-4d5c-93f3-8b6f0fa4cb2f","_postman_id":"8c1e5408-7360-4d5c-93f3-8b6f0fa4cb2f","description":""},{"name":"MARKET DATA","item":[{"name":"Get Poducts Traded","id":"3d0f98a3-f847-441a-87e2-ccde9e0a2f12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/market_data/products","urlObject":{"path":["market_data","products"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"9fe89f12-38e3-4fde-a933-bc8babf90b8b","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"625747fa717cba72da32beeadbbe1877;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:47:11 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000037,\n    \"payload\": \"[{\\\"id\\\":\\\"AAVE-USD\\\",\\\"base_currency\\\":\\\"AAVE\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"AAVE/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"500000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UMA-USD\\\",\\\"base_currency\\\":\\\"UMA\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"4500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"UMA/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FIL-EUR\\\",\\\"base_currency\\\":\\\"FIL\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3400\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FIL/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"84000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZRX-USD\\\",\\\"base_currency\\\":\\\"ZRX\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"ZRX/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SNX-BTC\\\",\\\"base_currency\\\":\\\"SNX\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"19000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SNX/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"5.1\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOT-EUR\\\",\\\"base_currency\\\":\\\"DOT\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"10000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DOT/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"AAVE-GBP\\\",\\\"base_currency\\\":\\\"AAVE\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"AAVE/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"82000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FORTH-BTC\\\",\\\"base_currency\\\":\\\"FORTH\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"7200\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FORTH/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CRV-GBP\\\",\\\"base_currency\\\":\\\"CRV\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.5\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CRV/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-EUR\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BTC-USDT\\\",\\\"base_currency\\\":\\\"BTC\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"280\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BTC/USDT\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAL-USD\\\",\\\"base_currency\\\":\\\"BAL\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"6700\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"BAL/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZEC-USDC\\\",\\\"base_currency\\\":\\\"ZEC\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"5000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ZEC/USDC\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"250000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DAI-USDC\\\",\\\"base_currency\\\":\\\"DAI\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"DAI/USDC\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NU-EUR\\\",\\\"base_currency\\\":\\\"NU\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"1300000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"NU/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"84000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MANA-EUR\\\",\\\"base_currency\\\":\\\"MANA\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"220000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MANA/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ICP-GBP\\\",\\\"base_currency\\\":\\\"ICP\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1300\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ICP/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BTC-GBP\\\",\\\"base_currency\\\":\\\"BTC\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"80\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BTC/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"200000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BOND-USD\\\",\\\"base_currency\\\":\\\"BOND\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6600\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"BOND/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOGE-BTC\\\",\\\"base_currency\\\":\\\"DOGE\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"690000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"DOGE/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GRT-EUR\\\",\\\"base_currency\\\":\\\"GRT\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"2500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"GRT/EUR\\\",\\\"min_market_funds\\\":\\\"10.0\\\",\\\"max_market_funds\\\":\\\"92000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CHZ-GBP\\\",\\\"base_currency\\\":\\\"CHZ\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"900000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CHZ/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MATIC-EUR\\\",\\\"base_currency\\\":\\\"MATIC\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"MATIC/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOGE-GBP\\\",\\\"base_currency\\\":\\\"DOGE\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"690000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"DOGE/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ALGO-EUR\\\",\\\"base_currency\\\":\\\"ALGO\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ALGO/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UMA-GBP\\\",\\\"base_currency\\\":\\\"UMA\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"4500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"UMA/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DASH-USD\\\",\\\"base_currency\\\":\\\"DASH\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DASH/USD\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOGE-EUR\\\",\\\"base_currency\\\":\\\"DOGE\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"690000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"DOGE/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETC-EUR\\\",\\\"base_currency\\\":\\\"ETC\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"20000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETC/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"Our ETC order books are now in full-trading mode. Limit, market and stop orders are all now available.\\\"},{\\\"id\\\":\\\"BAT-EUR\\\",\\\"base_currency\\\":\\\"BAT\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"170000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAT/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ALGO-GBP\\\",\\\"base_currency\\\":\\\"ALGO\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ALGO/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETC-USD\\\",\\\"base_currency\\\":\\\"ETC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"20000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETC/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"Our ETC order books are now in full-trading mode. Limit, market and stop orders are all now available.\\\"},{\\\"id\\\":\\\"ETH-USD\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"2800\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"EOS-USD\\\",\\\"base_currency\\\":\\\"EOS\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"50000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"EOS/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOT-USD\\\",\\\"base_currency\\\":\\\"DOT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"10000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DOT/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MASK-USD\\\",\\\"base_currency\\\":\\\"MASK\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"67000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MASK/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLC-BTC\\\",\\\"base_currency\\\":\\\"RLC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"93000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"RLC/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAND-BTC\\\",\\\"base_currency\\\":\\\"BAND\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"18000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAND/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XTZ-BTC\\\",\\\"base_currency\\\":\\\"XTZ\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"XTZ/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SNX-EUR\\\",\\\"base_currency\\\":\\\"SNX\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"19000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SNX/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"92000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ENJ-BTC\\\",\\\"base_currency\\\":\\\"ENJ\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"97000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ENJ/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLY-GBP\\\",\\\"base_currency\\\":\\\"RLY\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"490000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"RLY/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLC-USD\\\",\\\"base_currency\\\":\\\"RLC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"93000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"RLC/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SKL-USD\\\",\\\"base_currency\\\":\\\"SKL\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"SKL/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LRC-USD\\\",\\\"base_currency\\\":\\\"LRC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"560000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"LRC/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAT-USD\\\",\\\"base_currency\\\":\\\"BAT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"170000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAT/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-USDT\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"2800\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/USDT\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-BTC\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"REN-BTC\\\",\\\"base_currency\\\":\\\"REN\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"460000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"REN/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ANKR-USD\\\",\\\"base_currency\\\":\\\"ANKR\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"4000000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ANKR/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CGLD-USD\\\",\\\"base_currency\\\":\\\"CGLD\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"34000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CGLD/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOGE-USDT\\\",\\\"base_currency\\\":\\\"DOGE\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"690000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"DOGE/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FORTH-EUR\\\",\\\"base_currency\\\":\\\"FORTH\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"7200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FORTH/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"YFI-BTC\\\",\\\"base_currency\\\":\\\"YFI\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.00001\\\",\\\"base_max_size\\\":\\\"4.2\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"YFI/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-USDC\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"170000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/USDC\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SOL-USD\\\",\\\"base_currency\\\":\\\"SOL\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SOL/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NMR-GBP\\\",\\\"base_currency\\\":\\\"NMR\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3900\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"NMR/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GRT-USD\\\",\\\"base_currency\\\":\\\"GRT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"2500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"GRT/USD\\\",\\\"min_market_funds\\\":\\\"10.0\\\",\\\"max_market_funds\\\":\\\"2500000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SKL-BTC\\\",\\\"base_currency\\\":\\\"SKL\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"SKL/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BNT-USD\\\",\\\"base_currency\\\":\\\"BNT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"95000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"BNT/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-GBP\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ATOM-BTC\\\",\\\"base_currency\\\":\\\"ATOM\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"25000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"ATOM/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"30\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ATOM-USD\\\",\\\"base_currency\\\":\\\"ATOM\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"25000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"ATOM/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MANA-BTC\\\",\\\"base_currency\\\":\\\"MANA\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"220000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MANA/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SUSHI-BTC\\\",\\\"base_currency\\\":\\\"SUSHI\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"12500\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SUSHI/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NMR-BTC\\\",\\\"base_currency\\\":\\\"NMR\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3900\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"NMR/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CLV-GBP\\\",\\\"base_currency\\\":\\\"CLV\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"52000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CLV/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"QNT-USD\\\",\\\"base_currency\\\":\\\"QNT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3600\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"QNT/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MASK-GBP\\\",\\\"base_currency\\\":\\\"MASK\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"64000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MASK/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BCH-USD\\\",\\\"base_currency\\\":\\\"BCH\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"700\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BCH/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"500000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LPT-USD\\\",\\\"base_currency\\\":\\\"LPT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"9800\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"LPT/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"AAVE-EUR\\\",\\\"base_currency\\\":\\\"AAVE\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"AAVE/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"92000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAND-GBP\\\",\\\"base_currency\\\":\\\"BAND\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"18000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAND/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XLM-EUR\\\",\\\"base_currency\\\":\\\"XLM\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"XLM/EUR\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CHZ-USD\\\",\\\"base_currency\\\":\\\"CHZ\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"900000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CHZ/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MATIC-BTC\\\",\\\"base_currency\\\":\\\"MATIC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"MATIC/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CLV-USD\\\",\\\"base_currency\\\":\\\"CLV\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"52000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CLV/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BNT-EUR\\\",\\\"base_currency\\\":\\\"BNT\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"95000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"BNT/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"92000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LTC-GBP\\\",\\\"base_currency\\\":\\\"LTC\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"LTC/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"250000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"YFI-USD\\\",\\\"base_currency\\\":\\\"YFI\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.00001\\\",\\\"base_max_size\\\":\\\"5\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"YFI/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOT-USDT\\\",\\\"base_currency\\\":\\\"DOT\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"10000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DOT/USDT\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"USDT-USDC\\\",\\\"base_currency\\\":\\\"USDT\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDT/USDC\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CGLD-GBP\\\",\\\"base_currency\\\":\\\"CGLD\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"34000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CGLD/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NKN-BTC\\\",\\\"base_currency\\\":\\\"NKN\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"1400000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"NKN/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LOOM-USDC\\\",\\\"base_currency\\\":\\\"LOOM\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"2500000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"LOOM/USDC\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LINK-BTC\\\",\\\"base_currency\\\":\\\"LINK\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"6500\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"LINK/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CRV-EUR\\\",\\\"base_currency\\\":\\\"CRV\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.5\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CRV/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MLN-USD\\\",\\\"base_currency\\\":\\\"MLN\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3300\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"MLN/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SKL-EUR\\\",\\\"base_currency\\\":\\\"SKL\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"SKL/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"WBTC-USD\\\",\\\"base_currency\\\":\\\"WBTC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"10\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"WBTC/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LRC-BTC\\\",\\\"base_currency\\\":\\\"LRC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"440000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"LRC/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BCH-EUR\\\",\\\"base_currency\\\":\\\"BCH\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"100\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BCH/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"300000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-BTC\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"2400\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"80\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OGN-USD\\\",\\\"base_currency\\\":\\\"OGN\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"130000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"OGN/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"STORJ-USD\\\",\\\"base_currency\\\":\\\"STORJ\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"280000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"STORJ/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAT-BTC\\\",\\\"base_currency\\\":\\\"BAT\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"170000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAT/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XLM-USD\\\",\\\"base_currency\\\":\\\"XLM\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"XLM/USD\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OGN-BTC\\\",\\\"base_currency\\\":\\\"OGN\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"130000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"OGN/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CLV-EUR\\\",\\\"base_currency\\\":\\\"CLV\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"52000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CLV/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"WBTC-BTC\\\",\\\"base_currency\\\":\\\"WBTC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"10\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"WBTC/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOT-GBP\\\",\\\"base_currency\\\":\\\"DOT\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"10000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DOT/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SUSHI-GBP\\\",\\\"base_currency\\\":\\\"SUSHI\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"12500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SUSHI/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GRT-GBP\\\",\\\"base_currency\\\":\\\"GRT\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"2500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"GRT/GBP\\\",\\\"min_market_funds\\\":\\\"10.0\\\",\\\"max_market_funds\\\":\\\"82000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OMG-BTC\\\",\\\"base_currency\\\":\\\"OMG\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"150000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"OMG/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"500\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SUSHI-ETH\\\",\\\"base_currency\\\":\\\"SUSHI\\\",\\\"quote_currency\\\":\\\"ETH\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"12500\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SUSHI/ETH\\\",\\\"min_market_funds\\\":\\\"0.002\\\",\\\"max_market_funds\\\":\\\"50\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"REP-BTC\\\",\\\"base_currency\\\":\\\"REP\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"5000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"REP/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"6\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BTC-EUR\\\",\\\"base_currency\\\":\\\"BTC\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"200\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BTC/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"600000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SKL-GBP\\\",\\\"base_currency\\\":\\\"SKL\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"SKL/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BCH-BTC\\\",\\\"base_currency\\\":\\\"BCH\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"400\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BCH/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"60\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NU-USD\\\",\\\"base_currency\\\":\\\"NU\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"1300000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"NU/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CTSI-BTC\\\",\\\"base_currency\\\":\\\"CTSI\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"360000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CTSI/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"1INCH-GBP\\\",\\\"base_currency\\\":\\\"1INCH\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"59000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"1INCH/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ALGO-USD\\\",\\\"base_currency\\\":\\\"ALGO\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ALGO/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"1INCH-EUR\\\",\\\"base_currency\\\":\\\"1INCH\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"59000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"1INCH/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LTC-USD\\\",\\\"base_currency\\\":\\\"LTC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"4000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"LTC/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"250000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"KEEP-USD\\\",\\\"base_currency\\\":\\\"KEEP\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"910000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"KEEP/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"STORJ-BTC\\\",\\\"base_currency\\\":\\\"STORJ\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"280000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"STORJ/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MASK-USDT\\\",\\\"base_currency\\\":\\\"MASK\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"67000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MASK/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UNI-BTC\\\",\\\"base_currency\\\":\\\"UNI\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"25000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"UNI/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SOL-BTC\\\",\\\"base_currency\\\":\\\"SOL\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SOL/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MIR-USD\\\",\\\"base_currency\\\":\\\"MIR\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"27000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MIR/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MKR-BTC\\\",\\\"base_currency\\\":\\\"MKR\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"240\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"MKR/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"11\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FIL-GBP\\\",\\\"base_currency\\\":\\\"FIL\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3400\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FIL/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"75000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ENJ-USD\\\",\\\"base_currency\\\":\\\"ENJ\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"97000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ENJ/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BNT-BTC\\\",\\\"base_currency\\\":\\\"BNT\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"95000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"BNT/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"5.1\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SUSHI-EUR\\\",\\\"base_currency\\\":\\\"SUSHI\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"12500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SUSHI/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"AMP-USD\\\",\\\"base_currency\\\":\\\"AMP\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"6800000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"AMP/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GRT-BTC\\\",\\\"base_currency\\\":\\\"GRT\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"2500000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"GRT/BTC\\\",\\\"min_market_funds\\\":\\\"0.0000001\\\",\\\"max_market_funds\\\":\\\"5.2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MATIC-GBP\\\",\\\"base_currency\\\":\\\"MATIC\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"MATIC/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"USDT-EUR\\\",\\\"base_currency\\\":\\\"USDT\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDT/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ANKR-EUR\\\",\\\"base_currency\\\":\\\"ANKR\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"4000000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ANKR/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-GBP\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1400\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ANKR-GBP\\\",\\\"base_currency\\\":\\\"ANKR\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"4000000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ANKR/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CVC-USDC\\\",\\\"base_currency\\\":\\\"CVC\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"2000000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"CVC/USDC\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SNX-GBP\\\",\\\"base_currency\\\":\\\"SNX\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"19000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SNX/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"82000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SOL-GBP\\\",\\\"base_currency\\\":\\\"SOL\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SOL/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SNX-USD\\\",\\\"base_currency\\\":\\\"SNX\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"19000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SNX/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"REN-USD\\\",\\\"base_currency\\\":\\\"REN\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"460000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"REN/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-EUR\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1600\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"400000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BTC-USDC\\\",\\\"base_currency\\\":\\\"BTC\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"280\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BTC/USDC\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CGLD-EUR\\\",\\\"base_currency\\\":\\\"CGLD\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"34000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CGLD/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CGLD-BTC\\\",\\\"base_currency\\\":\\\"CGLD\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"34000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CGLD/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETC-BTC\\\",\\\"base_currency\\\":\\\"ETC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"5000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETC/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"30\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"Our ETC order books are now in full-trading mode. Limit, market and stop orders are all now available.\\\"},{\\\"id\\\":\\\"USDC-GBP\\\",\\\"base_currency\\\":\\\"USDC\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDC/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UNI-USD\\\",\\\"base_currency\\\":\\\"UNI\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"200000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"UNI/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOT-BTC\\\",\\\"base_currency\\\":\\\"DOT\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"10000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DOT/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ALGO-BTC\\\",\\\"base_currency\\\":\\\"ALGO\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"260000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ALGO/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAT-USDC\\\",\\\"base_currency\\\":\\\"BAT\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"800000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"BAT/USDC\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NMR-USD\\\",\\\"base_currency\\\":\\\"NMR\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3900\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"NMR/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CRV-USD\\\",\\\"base_currency\\\":\\\"CRV\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.5\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CRV/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAND-USD\\\",\\\"base_currency\\\":\\\"BAND\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"18000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAND/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MANA-USDC\\\",\\\"base_currency\\\":\\\"MANA\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"2800000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"MANA/USDC\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ANKR-BTC\\\",\\\"base_currency\\\":\\\"ANKR\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"4000000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"ANKR/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CHZ-EUR\\\",\\\"base_currency\\\":\\\"CHZ\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"900000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CHZ/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-USD\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"REP-USD\\\",\\\"base_currency\\\":\\\"REP\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"5000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"REP/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"30000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DAI-USD\\\",\\\"base_currency\\\":\\\"DAI\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"DAI/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-DAI\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"DAI\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"700\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ETH/DAI\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ICP-BTC\\\",\\\"base_currency\\\":\\\"ICP\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1300\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ICP/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BTC-USD\\\",\\\"base_currency\\\":\\\"BTC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.0001\\\",\\\"base_max_size\\\":\\\"280\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BTC/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SUSHI-USD\\\",\\\"base_currency\\\":\\\"SUSHI\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"12500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"SUSHI/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UMA-EUR\\\",\\\"base_currency\\\":\\\"UMA\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"4500\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"UMA/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"EOS-EUR\\\",\\\"base_currency\\\":\\\"EOS\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"50000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"EOS/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CTSI-USD\\\",\\\"base_currency\\\":\\\"CTSI\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"360000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CTSI/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LTC-BTC\\\",\\\"base_currency\\\":\\\"LTC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"8000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"LTC/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"120\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"USDT-USD\\\",\\\"base_currency\\\":\\\"USDT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDT/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XTZ-USD\\\",\\\"base_currency\\\":\\\"XTZ\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"XTZ/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZRX-BTC\\\",\\\"base_currency\\\":\\\"ZRX\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"ZRX/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"60\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLY-EUR\\\",\\\"base_currency\\\":\\\"RLY\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"490000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"RLY/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OMG-GBP\\\",\\\"base_currency\\\":\\\"OMG\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"150000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"OMG/GBP\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ADA-ETH\\\",\\\"base_currency\\\":\\\"ADA\\\",\\\"quote_currency\\\":\\\"ETH\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"170000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"ADA/ETH\\\",\\\"min_market_funds\\\":\\\"0.002\\\",\\\"max_market_funds\\\":\\\"100\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GNT-USDC\\\",\\\"base_currency\\\":\\\"GNT\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"1500000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"GNT/USDC\\\",\\\"min_market_funds\\\":\\\"0.01\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DASH-BTC\\\",\\\"base_currency\\\":\\\"DASH\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1500\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"DASH/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"EOS-BTC\\\",\\\"base_currency\\\":\\\"EOS\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"50000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"EOS/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"30\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAND-EUR\\\",\\\"base_currency\\\":\\\"BAND\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"18000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAND/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LINK-USD\\\",\\\"base_currency\\\":\\\"LINK\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"90000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"LINK/USD\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAT-ETH\\\",\\\"base_currency\\\":\\\"BAT\\\",\\\"quote_currency\\\":\\\"ETH\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"300000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"BAT/ETH\\\",\\\"min_market_funds\\\":\\\"0.01\\\",\\\"max_market_funds\\\":\\\"500\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZEC-USD\\\",\\\"base_currency\\\":\\\"ZEC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1200\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"ZEC/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FORTH-GBP\\\",\\\"base_currency\\\":\\\"FORTH\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"7200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FORTH/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LINK-GBP\\\",\\\"base_currency\\\":\\\"LINK\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"90000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"LINK/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CLV-USDT\\\",\\\"base_currency\\\":\\\"CLV\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"52000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CLV/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DOGE-USD\\\",\\\"base_currency\\\":\\\"DOGE\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"690000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"DOGE/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BAL-BTC\\\",\\\"base_currency\\\":\\\"BAL\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"6700\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"BAL/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LINK-ETH\\\",\\\"base_currency\\\":\\\"LINK\\\",\\\"quote_currency\\\":\\\"ETH\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"90000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"LINK/ETH\\\",\\\"min_market_funds\\\":\\\"0.01\\\",\\\"max_market_funds\\\":\\\"400\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MATIC-USD\\\",\\\"base_currency\\\":\\\"MATIC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"5\\\",\\\"base_max_size\\\":\\\"1000000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"MATIC/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LTC-EUR\\\",\\\"base_currency\\\":\\\"LTC\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"LTC/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"250000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BCH-GBP\\\",\\\"base_currency\\\":\\\"BCH\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"250\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"BCH/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"500000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"DNT-USDC\\\",\\\"base_currency\\\":\\\"DNT\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"10000000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"DNT/USDC\\\",\\\"min_market_funds\\\":\\\"0.1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"LINK-EUR\\\",\\\"base_currency\\\":\\\"LINK\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"90000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"LINK/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OMG-USD\\\",\\\"base_currency\\\":\\\"OMG\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"OMG/USD\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FIL-USD\\\",\\\"base_currency\\\":\\\"FIL\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3400\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FIL/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SOL-EUR\\\",\\\"base_currency\\\":\\\"SOL\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SOL/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETH-USDC\\\",\\\"base_currency\\\":\\\"ETH\\\",\\\"quote_currency\\\":\\\"USDC\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"2800\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETH/USDC\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"1000000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"TRB-USD\\\",\\\"base_currency\\\":\\\"TRB\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3100\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"TRB/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FIL-BTC\\\",\\\"base_currency\\\":\\\"FIL\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3400\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FIL/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ICP-USD\\\",\\\"base_currency\\\":\\\"ICP\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1300\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ICP/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"GTC-USD\\\",\\\"base_currency\\\":\\\"GTC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"44000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"GTC/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ETC-GBP\\\",\\\"base_currency\\\":\\\"ETC\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"20000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.00000001\\\",\\\"display_name\\\":\\\"ETC/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"Our ETC order books are now in full-trading mode. Limit, market and stop orders are all now available.\\\"},{\\\"id\\\":\\\"1INCH-USD\\\",\\\"base_currency\\\":\\\"1INCH\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"59000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"1INCH/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"USDC-EUR\\\",\\\"base_currency\\\":\\\"USDC\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"250000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDC/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NKN-USD\\\",\\\"base_currency\\\":\\\"NKN\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"1400000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"NKN/USD\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLY-USD\\\",\\\"base_currency\\\":\\\"RLY\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"490000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"RLY/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"COMP-USD\\\",\\\"base_currency\\\":\\\"COMP\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1700\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"COMP/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"UMA-BTC\\\",\\\"base_currency\\\":\\\"UMA\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"4500\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"UMA/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"AAVE-BTC\\\",\\\"base_currency\\\":\\\"AAVE\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1200\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"AAVE/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"5.2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MASK-EUR\\\",\\\"base_currency\\\":\\\"MASK\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"64000\\\",\\\"quote_increment\\\":\\\"0.01\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MASK/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MANA-USD\\\",\\\"base_currency\\\":\\\"MANA\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"220000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MANA/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MKR-USD\\\",\\\"base_currency\\\":\\\"MKR\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"240\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"MKR/USD\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OMG-EUR\\\",\\\"base_currency\\\":\\\"OMG\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"OMG/EUR\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ICP-USDT\\\",\\\"base_currency\\\":\\\"ICP\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1300\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ICP/USDT\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"FORTH-USD\\\",\\\"base_currency\\\":\\\"FORTH\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"7200\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"FORTH/USD\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MANA-ETH\\\",\\\"base_currency\\\":\\\"MANA\\\",\\\"quote_currency\\\":\\\"ETH\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"220000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MANA/ETH\\\",\\\"min_market_funds\\\":\\\"0.002\\\",\\\"max_market_funds\\\":\\\"100\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"BNT-GBP\\\",\\\"base_currency\\\":\\\"BNT\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"95000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"BNT/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"82000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZEC-BTC\\\",\\\"base_currency\\\":\\\"ZEC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1500\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ZEC/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"30\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"SOL-USDT\\\",\\\"base_currency\\\":\\\"SOL\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"6000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"SOL/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MIR-EUR\\\",\\\"base_currency\\\":\\\"MIR\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"27000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MIR/EUR\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"OXT-USD\\\",\\\"base_currency\\\":\\\"OXT\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"OXT/USD\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MIR-BTC\\\",\\\"base_currency\\\":\\\"MIR\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"27000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MIR/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"RLY-USDT\\\",\\\"base_currency\\\":\\\"RLY\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"490000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"RLY/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NMR-EUR\\\",\\\"base_currency\\\":\\\"NMR\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3900\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"NMR/EUR\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XLM-BTC\\\",\\\"base_currency\\\":\\\"XLM\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"XLM/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"50\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"COMP-BTC\\\",\\\"base_currency\\\":\\\"COMP\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"1700\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"COMP/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"10\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XTZ-GBP\\\",\\\"base_currency\\\":\\\"XTZ\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"XTZ/GBP\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CRV-BTC\\\",\\\"base_currency\\\":\\\"CRV\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.5\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"CRV/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"1INCH-BTC\\\",\\\"base_currency\\\":\\\"1INCH\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"59000\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"1INCH/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NU-GBP\\\",\\\"base_currency\\\":\\\"NU\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"1300000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.000001\\\",\\\"display_name\\\":\\\"NU/GBP\\\",\\\"min_market_funds\\\":\\\"1.0\\\",\\\"max_market_funds\\\":\\\"75000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ICP-EUR\\\",\\\"base_currency\\\":\\\"ICP\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"0.001\\\",\\\"base_max_size\\\":\\\"1300\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.0001\\\",\\\"display_name\\\":\\\"ICP/EUR\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"NU-BTC\\\",\\\"base_currency\\\":\\\"NU\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"10\\\",\\\"base_max_size\\\":\\\"1300000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"1\\\",\\\"display_name\\\":\\\"NU/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"6\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"TRB-BTC\\\",\\\"base_currency\\\":\\\"TRB\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"0.01\\\",\\\"base_max_size\\\":\\\"3100\\\",\\\"quote_increment\\\":\\\"0.0000001\\\",\\\"base_increment\\\":\\\"0.001\\\",\\\"display_name\\\":\\\"TRB/BTC\\\",\\\"min_market_funds\\\":\\\"0.0001\\\",\\\"max_market_funds\\\":\\\"2.0\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"ZRX-EUR\\\",\\\"base_currency\\\":\\\"ZRX\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.000001\\\",\\\"base_increment\\\":\\\"0.00001\\\",\\\"display_name\\\":\\\"ZRX/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"CHZ-USDT\\\",\\\"base_currency\\\":\\\"CHZ\\\",\\\"quote_currency\\\":\\\"USDT\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"900000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"CHZ/USDT\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"KNC-BTC\\\",\\\"base_currency\\\":\\\"KNC\\\",\\\"quote_currency\\\":\\\"BTC\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"600000\\\",\\\"quote_increment\\\":\\\"0.00000001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"KNC/BTC\\\",\\\"min_market_funds\\\":\\\"0.001\\\",\\\"max_market_funds\\\":\\\"30\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"MIR-GBP\\\",\\\"base_currency\\\":\\\"MIR\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"0.1\\\",\\\"base_max_size\\\":\\\"27000\\\",\\\"quote_increment\\\":\\\"0.001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"MIR/GBP\\\",\\\"min_market_funds\\\":\\\"5.0\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"XTZ-EUR\\\",\\\"base_currency\\\":\\\"XTZ\\\",\\\"quote_currency\\\":\\\"EUR\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.00001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"XTZ/EUR\\\",\\\"min_market_funds\\\":\\\"10\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"USDT-GBP\\\",\\\"base_currency\\\":\\\"USDT\\\",\\\"quote_currency\\\":\\\"GBP\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"100000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.01\\\",\\\"display_name\\\":\\\"USDT/GBP\\\",\\\"min_market_funds\\\":\\\"5\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":true,\\\"post_only\\\":false,\\\"limit_only\\\":true,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"},{\\\"id\\\":\\\"KNC-USD\\\",\\\"base_currency\\\":\\\"KNC\\\",\\\"quote_currency\\\":\\\"USD\\\",\\\"base_min_size\\\":\\\"1\\\",\\\"base_max_size\\\":\\\"500000\\\",\\\"quote_increment\\\":\\\"0.0001\\\",\\\"base_increment\\\":\\\"0.1\\\",\\\"display_name\\\":\\\"KNC/USD\\\",\\\"min_market_funds\\\":\\\"1\\\",\\\"max_market_funds\\\":\\\"100000\\\",\\\"margin_enabled\\\":false,\\\"fx_stablecoin\\\":false,\\\"post_only\\\":false,\\\"limit_only\\\":false,\\\"cancel_only\\\":false,\\\"trading_disabled\\\":false,\\\"status\\\":\\\"online\\\",\\\"status_message\\\":\\\"\\\"}]\"\n}"}],"_postman_id":"3d0f98a3-f847-441a-87e2-ccde9e0a2f12"},{"name":"Get Currencies Traded","id":"40bb3fd7-6008-420f-a046-72af3d4e5418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.bloxcross-dev.com/market_data/currencies_traded","urlObject":{"protocol":"https","path":["market_data","currencies_traded"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[{"id":"76af7116-d64c-4171-aaab-f81981648146","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/currencies_traded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3b6bc04a4d7c8322749ebc856db4fe03;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:27 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000046,\n    \"payload\": \"[{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"DASH\\\",\\\"name\\\":\\\"Dash\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":2,\\\"sort_order\\\":47,\\\"crypto_address_link\\\":\\\"https://chain.so/address/DASH/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://chain.so/tx/DASH/{{address}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"OXT\\\",\\\"name\\\":\\\"Orchid\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":48,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ATOM\\\",\\\"name\\\":\\\"Cosmos\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":51,\\\"crypto_address_link\\\":\\\"https://cosmos.bigdipper.live/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://cosmos.bigdipper.live/transactions/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":40000}},{\\\"id\\\":\\\"KNC\\\",\\\"name\\\":\\\"Kyber Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":120,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdd974d5c2e2928dea5f71b9825b8b646686bd200?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":121000}},{\\\"id\\\":\\\"MIR\\\",\\\"name\\\":\\\"Mirror Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":144,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.55,\\\"max_withdrawal_amount\\\":14000}},{\\\"id\\\":\\\"REP\\\",\\\"name\\\":\\\"Augur\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":85,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":7750}},{\\\"id\\\":\\\"ICP\\\",\\\"name\\\":\\\"Internet Computer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting ICP deposits.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":34,\\\"crypto_address_link\\\":\\\"https://dashboard.internetcomputer.org/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.04,\\\"max_withdrawal_amount\\\":20000}},{\\\"id\\\":\\\"CGLD\\\",\\\"name\\\":\\\"Celo\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":4,\\\"sort_order\\\":200,\\\"crypto_address_link\\\":\\\"https://explorer.celo.org/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.celo.org/tx/{{txId}}/token_transfers\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":61250}},{\\\"id\\\":\\\"COMP\\\",\\\"name\\\":\\\"Compound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":140,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc00e94cb662c3520282e6f5717214004a7f26888?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1900}},{\\\"id\\\":\\\"NMR\\\",\\\"name\\\":\\\"Numeraire\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":170,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":6000}},{\\\"id\\\":\\\"OMG\\\",\\\"name\\\":\\\"OMG Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":57,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":200000}},{\\\"id\\\":\\\"BAND\\\",\\\"name\\\":\\\"Band Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":160,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.2,\\\"max_withdrawal_amount\\\":37500}},{\\\"id\\\":\\\"XLM\\\",\\\"name\\\":\\\"Stellar\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://stellar.expert/explorer/public/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://stellar.expert/explorer/public/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":6,\\\"min_withdrawal_amount\\\":2,\\\"max_withdrawal_amount\\\":550000}},{\\\"id\\\":\\\"EOS\\\",\\\"name\\\":\\\"EOS\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":45,\\\"crypto_address_link\\\":\\\"https://www.eosx.io/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://www.eosx.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":360,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"ZRX\\\",\\\"name\\\":\\\"0x\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":90,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xe41d2489571d322189246dafa5ebde1f4699f498?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":375000}},{\\\"id\\\":\\\"BAT\\\",\\\"name\\\":\\\"Basic Attention Token\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":70,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d8775f648430679a709e98d2b0cb6250d2887ef?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":350000}},{\\\"id\\\":\\\"LOOM\\\",\\\"name\\\":\\\"Loom Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":115,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1590000}},{\\\"id\\\":\\\"UNI\\\",\\\"name\\\":\\\"Uniswap\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":220,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":34000}},{\\\"id\\\":\\\"YFI\\\",\\\"name\\\":\\\"yearn.finance\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting yearn.finance deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":215,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0002,\\\"max_withdrawal_amount\\\":42.5}},{\\\"id\\\":\\\"LRC\\\",\\\"name\\\":\\\"Loopring\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting Loopring deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":210,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xEF68e7C694F40c8202821eDF525dE3782458639f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":2.6,\\\"max_withdrawal_amount\\\":1400000}},{\\\"id\\\":\\\"CVC\\\",\\\"name\\\":\\\"Civic\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":125,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x41e5560054824ea6b0732e656e3ad64e20e94e45?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"DNT\\\",\\\"name\\\":\\\"district0x\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":130,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0abdace70d3790235af448c88547603b945604ea?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1670000}},{\\\"id\\\":\\\"MANA\\\",\\\"name\\\":\\\"Decentraland\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":110,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0f5d2fb29fb7d3cfee444a200298f468908cc942?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":850000}},{\\\"id\\\":\\\"GNT\\\",\\\"name\\\":\\\"Golem\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":105,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa74476443119A942dE498590Fe1f2454d7D4aC0d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":423000}},{\\\"id\\\":\\\"REN\\\",\\\"name\\\":\\\"Ren\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":225,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x408e41876cccdc0f92210600ef50372656052a38?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":31,\\\"max_withdrawal_amount\\\":437500}},{\\\"id\\\":\\\"LINK\\\",\\\"name\\\":\\\"Chainlink\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":67,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"BTC\\\",\\\"name\\\":\\\"Bitcoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":3,\\\"sort_order\\\":20,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/btc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/btc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"btc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":500}},{\\\"id\\\":\\\"BAL\\\",\\\"name\\\":\\\"Balancer\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.38,\\\"max_withdrawal_amount\\\":6500}},{\\\"id\\\":\\\"EUR\\\",\\\"name\\\":\\\"Euro\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"€\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":2,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"sepa_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"eur\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"LTC\\\",\\\"name\\\":\\\"Litecoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ł\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":35,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/ltc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/ltc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":30000}},{\\\"id\\\":\\\"GBP\\\",\\\"name\\\":\\\"British Pound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"£\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":3,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"uk_bank_account\\\",\\\"swift_lhv\\\",\\\"swift\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"gbp\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"USD\\\",\\\"name\\\":\\\"United States Dollar\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[\\\"USDC\\\"],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":1,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"bank_wire\\\",\\\"fedwire\\\",\\\"swift_bank_account\\\",\\\"intra_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"usd\\\"],\\\"display_name\\\":\\\"US Dollar\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"ETH\\\",\\\"name\\\":\\\"Ether\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":25,\\\"crypto_address_link\\\":\\\"https://etherscan.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"eth\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":5000}},{\\\"id\\\":\\\"BCH\\\",\\\"name\\\":\\\"Bitcoin Cash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":40,\\\"crypto_address_link\\\":\\\"https://blockchair.com/bitcoin-cash/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://blockchair.com/bitcoin-cash/transaction/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"ETC\\\",\\\"name\\\":\\\"Ether Classic\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"⟠\\\",\\\"network_confirmations\\\":10000,\\\"sort_order\\\":55,\\\"crypto_address_link\\\":\\\"https://gastracker.io/addr/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://gastracker.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"USDC\\\",\\\"name\\\":\\\"USD Coin\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[\\\"USD\\\"],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"usdc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":8500000}},{\\\"id\\\":\\\"ZEC\\\",\\\"name\\\":\\\"Zcash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"ᙇ\\\",\\\"network_confirmations\\\":24,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://zcash.blockexplorer.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://zcash.blockexplorer.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"RLC\\\",\\\"name\\\":\\\"iExec RLC\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":288,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.23,\\\"max_withdrawal_amount\\\":46000}},{\\\"id\\\":\\\"DAI\\\",\\\"name\\\":\\\"Dai\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":100,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"dai\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"WBTC\\\",\\\"name\\\":\\\"Wrapped Bitcoin\\\",\\\"min_size\\\":\\\"0.0001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00054,\\\"max_withdrawal_amount\\\":20}},{\\\"id\\\":\\\"NU\\\",\\\"name\\\":\\\"NuCypher\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":240,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4fe83213d56308330ec302a8bd641f1d0113a4cc?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":325000}},{\\\"id\\\":\\\"FIL\\\",\\\"name\\\":\\\"Filecoin\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":250,\\\"crypto_address_link\\\":\\\"https://filfox.info/en/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://filfox.info/en/message/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":30,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":4000}},{\\\"id\\\":\\\"AAVE\\\",\\\"name\\\":\\\"Aave\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":270,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"SNX\\\",\\\"name\\\":\\\"Synthetix\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":320,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.5,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"BNT\\\",\\\"name\\\":\\\"Bancor\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":300,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.87,\\\"max_withdrawal_amount\\\":110000}},{\\\"id\\\":\\\"GRT\\\",\\\"name\\\":\\\"The Graph\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":290,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d67f3e4bcbd2d6b7a90150c73bdf9ffc6b6de9b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"SUSHI\\\",\\\"name\\\":\\\"SushiSwap\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":340,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":52500}},{\\\"id\\\":\\\"MATIC\\\",\\\"name\\\":\\\"Polygon\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":350,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":81,\\\"max_withdrawal_amount\\\":1675000}},{\\\"id\\\":\\\"MLN\\\",\\\"name\\\":\\\"Enzyme\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":313,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xec67005c4e498ec7f55e092bd1d35cbc47c91892?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"ANKR\\\",\\\"name\\\":\\\"Ankr\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":400,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8290333cef9e6d528dd5618fb97a76f268f3edd4?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":520,\\\"max_withdrawal_amount\\\":1960000}},{\\\"id\\\":\\\"CRV\\\",\\\"name\\\":\\\"Curve DAO Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":420,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd533a949740bb3306d119cc777fa900ba034cd52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.3,\\\"max_withdrawal_amount\\\":83000}},{\\\"id\\\":\\\"STORJ\\\",\\\"name\\\":\\\"Storj\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":440,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":162000}},{\\\"id\\\":\\\"SKL\\\",\\\"name\\\":\\\"SKALE\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":55,\\\"max_withdrawal_amount\\\":800000}},{\\\"id\\\":\\\"AMP\\\",\\\"name\\\":\\\"Amp\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xff20817765cb7f73d4bde2e66e067e58d11095c2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125000}},{\\\"id\\\":\\\"1INCH\\\",\\\"name\\\":\\\"1Inch\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":107,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x111111111117dc0aa78b770fa6a738034120c302?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":3.33,\\\"max_withdrawal_amount\\\":31250}},{\\\"id\\\":\\\"ENJ\\\",\\\"name\\\":\\\"Enjin Coin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.89,\\\"max_withdrawal_amount\\\":48000}},{\\\"id\\\":\\\"NKN\\\",\\\"name\\\":\\\"NKN\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":308,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x5cf04716ba20127f1e2297addcf4b5035000c9eb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":77,\\\"max_withdrawal_amount\\\":385000}},{\\\"id\\\":\\\"OGN\\\",\\\"name\\\":\\\"Origin Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":161,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":15.26,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"FORTH\\\",\\\"name\\\":\\\"Ampleforth Governance Token\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":208,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x77fba179c79de5b7653f68b5039af940ada60ce0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.86,\\\"max_withdrawal_amount\\\":7000}},{\\\"id\\\":\\\"GTC\\\",\\\"name\\\":\\\"Gitcoin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":20700}},{\\\"id\\\":\\\"TRB\\\",\\\"name\\\":\\\"Tellor\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":373,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.17,\\\"max_withdrawal_amount\\\":3300}},{\\\"id\\\":\\\"XRP\\\",\\\"name\\\":\\\"XRP\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://bithomp.com/explorer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":600,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":130000}},{\\\"id\\\":\\\"XTZ\\\",\\\"name\\\":\\\"Tezos\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":100000}},{\\\"id\\\":\\\"CTSI\\\",\\\"name\\\":\\\"Cartesi\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":263,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":23.88,\\\"max_withdrawal_amount\\\":450000}},{\\\"id\\\":\\\"MKR\\\",\\\"name\\\":\\\"Maker\\\",\\\"min_size\\\":\\\"0.001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":49,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":300}},{\\\"id\\\":\\\"UMA\\\",\\\"name\\\":\\\"UMA\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":205,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7f08962d948c5c59cac284035748be21134ebc2b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":21000}},{\\\"id\\\":\\\"DOGE\\\",\\\"name\\\":\\\"Dogecoin\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":29,\\\"crypto_address_link\\\":\\\"https://dogechain.info/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ADA\\\",\\\"name\\\":\\\"Cardano\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":28,\\\"crypto_address_link\\\":\\\"https://explorer.cardano.org/en/address?address={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":750000}},{\\\"id\\\":\\\"USDT\\\",\\\"name\\\":\\\"Tether\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":26,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":13,\\\"max_withdrawal_amount\\\":10000000}},{\\\"id\\\":\\\"DOT\\\",\\\"name\\\":\\\"Polkadot\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting DOT deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://polkascan.io/polkadot/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://polkascan.io/polkadot/balances/transfer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.03,\\\"max_withdrawal_amount\\\":13000}},{\\\"id\\\":\\\"CHZ\\\",\\\"name\\\":\\\"Chiliz\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":73,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x3506424f91fd33084466f402d5d97f05f8e3b4af?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":890000}},{\\\"id\\\":\\\"SHIB\\\",\\\"name\\\":\\\"Shiba Inu\\\",\\\"min_size\\\":\\\"100000\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":13213531000}},{\\\"id\\\":\\\"SOL\\\",\\\"name\\\":\\\"Solana\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting SOL deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":31,\\\"sort_order\\\":31,\\\"crypto_address_link\\\":\\\"https://explorer.solana.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.solana.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.12,\\\"max_withdrawal_amount\\\":9000}},{\\\"id\\\":\\\"BOND\\\",\\\"name\\\":\\\"BarnBridge\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":253,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0391d2021f89dc339f60fff84546ea23e337750f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"LPT\\\",\\\"name\\\":\\\"Livepeer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":106,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x58b6a8a3302369daec383334672404ee733ab239?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":50000}},{\\\"id\\\":\\\"QNT\\\",\\\"name\\\":\\\"Quant\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4a220e6096b25eadb88358cb44068a3248254675?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125}},{\\\"id\\\":\\\"KEEP\\\",\\\"name\\\":\\\"Keep Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":266,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":446000}},{\\\"id\\\":\\\"RLY\\\",\\\"name\\\":\\\"Rally\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":304,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"MASK\\\",\\\"name\\\":\\\"Mask Network\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":387,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x69af81e73a73b40adf4f3d4223cd9b1ece623074?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":33069}},{\\\"id\\\":\\\"CLV\\\",\\\"name\\\":\\\"Clover Finance\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":212,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":25510}}]\"\n}"}],"_postman_id":"40bb3fd7-6008-420f-a046-72af3d4e5418"},{"name":"Get Currency Info","id":"4f1c2094-08e6-4b00-919d-2d48a4b866e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ticker\": \"ALGO\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/market_data/currency","urlObject":{"path":["market_data","currency"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"edfd32db-8ee4-4feb-b621-f05459104801","name":"Example 1","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ticker\": \"ALGO\"\n}","options":{"raw":{"language":"json"}}},"url":"{{md_url}}/market_data/currency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3776658959ff3ca65959a806fb63138a;o=1"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:45 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000047,\n    \"payload\": \"{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000},\\\"max_precision\\\":\\\"0.000001\\\"}\"\n}"}],"_postman_id":"4f1c2094-08e6-4b00-919d-2d48a4b866e0"},{"name":"MD Ref Data - Get All Products","id":"8e8441c2-63e3-4ca5-8b7c-07a493548cf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiurl}}/md_ref_data/get_all_products","urlObject":{"path":["md_ref_data","get_all_products"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e8441c2-63e3-4ca5-8b7c-07a493548cf0"},{"name":"FX Currencies Available","id":"707b2c6e-8a0e-438f-aa56-e13caf1ee397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.bloxcross-dev.com/market_data/fx_currencies_available","urlObject":{"protocol":"https","path":["market_data","fx_currencies_available"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[{"id":"c158d01f-aa7c-4c47-8f29-9ab446d79a21","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/currencies_traded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3b6bc04a4d7c8322749ebc856db4fe03;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:27 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000046,\n    \"payload\": \"[{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"DASH\\\",\\\"name\\\":\\\"Dash\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":2,\\\"sort_order\\\":47,\\\"crypto_address_link\\\":\\\"https://chain.so/address/DASH/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://chain.so/tx/DASH/{{address}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"OXT\\\",\\\"name\\\":\\\"Orchid\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":48,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ATOM\\\",\\\"name\\\":\\\"Cosmos\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":51,\\\"crypto_address_link\\\":\\\"https://cosmos.bigdipper.live/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://cosmos.bigdipper.live/transactions/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":40000}},{\\\"id\\\":\\\"KNC\\\",\\\"name\\\":\\\"Kyber Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":120,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdd974d5c2e2928dea5f71b9825b8b646686bd200?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":121000}},{\\\"id\\\":\\\"MIR\\\",\\\"name\\\":\\\"Mirror Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":144,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.55,\\\"max_withdrawal_amount\\\":14000}},{\\\"id\\\":\\\"REP\\\",\\\"name\\\":\\\"Augur\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":85,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":7750}},{\\\"id\\\":\\\"ICP\\\",\\\"name\\\":\\\"Internet Computer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting ICP deposits.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":34,\\\"crypto_address_link\\\":\\\"https://dashboard.internetcomputer.org/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.04,\\\"max_withdrawal_amount\\\":20000}},{\\\"id\\\":\\\"CGLD\\\",\\\"name\\\":\\\"Celo\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":4,\\\"sort_order\\\":200,\\\"crypto_address_link\\\":\\\"https://explorer.celo.org/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.celo.org/tx/{{txId}}/token_transfers\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":61250}},{\\\"id\\\":\\\"COMP\\\",\\\"name\\\":\\\"Compound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":140,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc00e94cb662c3520282e6f5717214004a7f26888?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1900}},{\\\"id\\\":\\\"NMR\\\",\\\"name\\\":\\\"Numeraire\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":170,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":6000}},{\\\"id\\\":\\\"OMG\\\",\\\"name\\\":\\\"OMG Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":57,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":200000}},{\\\"id\\\":\\\"BAND\\\",\\\"name\\\":\\\"Band Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":160,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.2,\\\"max_withdrawal_amount\\\":37500}},{\\\"id\\\":\\\"XLM\\\",\\\"name\\\":\\\"Stellar\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://stellar.expert/explorer/public/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://stellar.expert/explorer/public/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":6,\\\"min_withdrawal_amount\\\":2,\\\"max_withdrawal_amount\\\":550000}},{\\\"id\\\":\\\"EOS\\\",\\\"name\\\":\\\"EOS\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":45,\\\"crypto_address_link\\\":\\\"https://www.eosx.io/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://www.eosx.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":360,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"ZRX\\\",\\\"name\\\":\\\"0x\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":90,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xe41d2489571d322189246dafa5ebde1f4699f498?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":375000}},{\\\"id\\\":\\\"BAT\\\",\\\"name\\\":\\\"Basic Attention Token\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":70,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d8775f648430679a709e98d2b0cb6250d2887ef?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":350000}},{\\\"id\\\":\\\"LOOM\\\",\\\"name\\\":\\\"Loom Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":115,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1590000}},{\\\"id\\\":\\\"UNI\\\",\\\"name\\\":\\\"Uniswap\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":220,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":34000}},{\\\"id\\\":\\\"YFI\\\",\\\"name\\\":\\\"yearn.finance\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting yearn.finance deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":215,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0002,\\\"max_withdrawal_amount\\\":42.5}},{\\\"id\\\":\\\"LRC\\\",\\\"name\\\":\\\"Loopring\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting Loopring deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":210,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xEF68e7C694F40c8202821eDF525dE3782458639f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":2.6,\\\"max_withdrawal_amount\\\":1400000}},{\\\"id\\\":\\\"CVC\\\",\\\"name\\\":\\\"Civic\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":125,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x41e5560054824ea6b0732e656e3ad64e20e94e45?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"DNT\\\",\\\"name\\\":\\\"district0x\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":130,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0abdace70d3790235af448c88547603b945604ea?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1670000}},{\\\"id\\\":\\\"MANA\\\",\\\"name\\\":\\\"Decentraland\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":110,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0f5d2fb29fb7d3cfee444a200298f468908cc942?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":850000}},{\\\"id\\\":\\\"GNT\\\",\\\"name\\\":\\\"Golem\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":105,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa74476443119A942dE498590Fe1f2454d7D4aC0d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":423000}},{\\\"id\\\":\\\"REN\\\",\\\"name\\\":\\\"Ren\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":225,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x408e41876cccdc0f92210600ef50372656052a38?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":31,\\\"max_withdrawal_amount\\\":437500}},{\\\"id\\\":\\\"LINK\\\",\\\"name\\\":\\\"Chainlink\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":67,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"BTC\\\",\\\"name\\\":\\\"Bitcoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":3,\\\"sort_order\\\":20,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/btc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/btc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"btc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":500}},{\\\"id\\\":\\\"BAL\\\",\\\"name\\\":\\\"Balancer\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.38,\\\"max_withdrawal_amount\\\":6500}},{\\\"id\\\":\\\"EUR\\\",\\\"name\\\":\\\"Euro\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"€\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":2,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"sepa_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"eur\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"LTC\\\",\\\"name\\\":\\\"Litecoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ł\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":35,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/ltc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/ltc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":30000}},{\\\"id\\\":\\\"GBP\\\",\\\"name\\\":\\\"British Pound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"£\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":3,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"uk_bank_account\\\",\\\"swift_lhv\\\",\\\"swift\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"gbp\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"USD\\\",\\\"name\\\":\\\"United States Dollar\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[\\\"USDC\\\"],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":1,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"bank_wire\\\",\\\"fedwire\\\",\\\"swift_bank_account\\\",\\\"intra_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"usd\\\"],\\\"display_name\\\":\\\"US Dollar\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"ETH\\\",\\\"name\\\":\\\"Ether\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":25,\\\"crypto_address_link\\\":\\\"https://etherscan.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"eth\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":5000}},{\\\"id\\\":\\\"BCH\\\",\\\"name\\\":\\\"Bitcoin Cash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":40,\\\"crypto_address_link\\\":\\\"https://blockchair.com/bitcoin-cash/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://blockchair.com/bitcoin-cash/transaction/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"ETC\\\",\\\"name\\\":\\\"Ether Classic\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"⟠\\\",\\\"network_confirmations\\\":10000,\\\"sort_order\\\":55,\\\"crypto_address_link\\\":\\\"https://gastracker.io/addr/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://gastracker.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"USDC\\\",\\\"name\\\":\\\"USD Coin\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[\\\"USD\\\"],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"usdc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":8500000}},{\\\"id\\\":\\\"ZEC\\\",\\\"name\\\":\\\"Zcash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"ᙇ\\\",\\\"network_confirmations\\\":24,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://zcash.blockexplorer.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://zcash.blockexplorer.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"RLC\\\",\\\"name\\\":\\\"iExec RLC\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":288,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.23,\\\"max_withdrawal_amount\\\":46000}},{\\\"id\\\":\\\"DAI\\\",\\\"name\\\":\\\"Dai\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":100,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"dai\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"WBTC\\\",\\\"name\\\":\\\"Wrapped Bitcoin\\\",\\\"min_size\\\":\\\"0.0001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00054,\\\"max_withdrawal_amount\\\":20}},{\\\"id\\\":\\\"NU\\\",\\\"name\\\":\\\"NuCypher\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":240,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4fe83213d56308330ec302a8bd641f1d0113a4cc?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":325000}},{\\\"id\\\":\\\"FIL\\\",\\\"name\\\":\\\"Filecoin\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":250,\\\"crypto_address_link\\\":\\\"https://filfox.info/en/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://filfox.info/en/message/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":30,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":4000}},{\\\"id\\\":\\\"AAVE\\\",\\\"name\\\":\\\"Aave\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":270,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"SNX\\\",\\\"name\\\":\\\"Synthetix\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":320,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.5,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"BNT\\\",\\\"name\\\":\\\"Bancor\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":300,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.87,\\\"max_withdrawal_amount\\\":110000}},{\\\"id\\\":\\\"GRT\\\",\\\"name\\\":\\\"The Graph\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":290,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d67f3e4bcbd2d6b7a90150c73bdf9ffc6b6de9b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"SUSHI\\\",\\\"name\\\":\\\"SushiSwap\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":340,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":52500}},{\\\"id\\\":\\\"MATIC\\\",\\\"name\\\":\\\"Polygon\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":350,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":81,\\\"max_withdrawal_amount\\\":1675000}},{\\\"id\\\":\\\"MLN\\\",\\\"name\\\":\\\"Enzyme\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":313,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xec67005c4e498ec7f55e092bd1d35cbc47c91892?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"ANKR\\\",\\\"name\\\":\\\"Ankr\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":400,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8290333cef9e6d528dd5618fb97a76f268f3edd4?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":520,\\\"max_withdrawal_amount\\\":1960000}},{\\\"id\\\":\\\"CRV\\\",\\\"name\\\":\\\"Curve DAO Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":420,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd533a949740bb3306d119cc777fa900ba034cd52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.3,\\\"max_withdrawal_amount\\\":83000}},{\\\"id\\\":\\\"STORJ\\\",\\\"name\\\":\\\"Storj\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":440,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":162000}},{\\\"id\\\":\\\"SKL\\\",\\\"name\\\":\\\"SKALE\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":55,\\\"max_withdrawal_amount\\\":800000}},{\\\"id\\\":\\\"AMP\\\",\\\"name\\\":\\\"Amp\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xff20817765cb7f73d4bde2e66e067e58d11095c2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125000}},{\\\"id\\\":\\\"1INCH\\\",\\\"name\\\":\\\"1Inch\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":107,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x111111111117dc0aa78b770fa6a738034120c302?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":3.33,\\\"max_withdrawal_amount\\\":31250}},{\\\"id\\\":\\\"ENJ\\\",\\\"name\\\":\\\"Enjin Coin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.89,\\\"max_withdrawal_amount\\\":48000}},{\\\"id\\\":\\\"NKN\\\",\\\"name\\\":\\\"NKN\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":308,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x5cf04716ba20127f1e2297addcf4b5035000c9eb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":77,\\\"max_withdrawal_amount\\\":385000}},{\\\"id\\\":\\\"OGN\\\",\\\"name\\\":\\\"Origin Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":161,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":15.26,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"FORTH\\\",\\\"name\\\":\\\"Ampleforth Governance Token\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":208,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x77fba179c79de5b7653f68b5039af940ada60ce0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.86,\\\"max_withdrawal_amount\\\":7000}},{\\\"id\\\":\\\"GTC\\\",\\\"name\\\":\\\"Gitcoin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":20700}},{\\\"id\\\":\\\"TRB\\\",\\\"name\\\":\\\"Tellor\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":373,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.17,\\\"max_withdrawal_amount\\\":3300}},{\\\"id\\\":\\\"XRP\\\",\\\"name\\\":\\\"XRP\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://bithomp.com/explorer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":600,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":130000}},{\\\"id\\\":\\\"XTZ\\\",\\\"name\\\":\\\"Tezos\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":100000}},{\\\"id\\\":\\\"CTSI\\\",\\\"name\\\":\\\"Cartesi\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":263,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":23.88,\\\"max_withdrawal_amount\\\":450000}},{\\\"id\\\":\\\"MKR\\\",\\\"name\\\":\\\"Maker\\\",\\\"min_size\\\":\\\"0.001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":49,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":300}},{\\\"id\\\":\\\"UMA\\\",\\\"name\\\":\\\"UMA\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":205,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7f08962d948c5c59cac284035748be21134ebc2b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":21000}},{\\\"id\\\":\\\"DOGE\\\",\\\"name\\\":\\\"Dogecoin\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":29,\\\"crypto_address_link\\\":\\\"https://dogechain.info/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ADA\\\",\\\"name\\\":\\\"Cardano\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":28,\\\"crypto_address_link\\\":\\\"https://explorer.cardano.org/en/address?address={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":750000}},{\\\"id\\\":\\\"USDT\\\",\\\"name\\\":\\\"Tether\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":26,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":13,\\\"max_withdrawal_amount\\\":10000000}},{\\\"id\\\":\\\"DOT\\\",\\\"name\\\":\\\"Polkadot\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting DOT deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://polkascan.io/polkadot/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://polkascan.io/polkadot/balances/transfer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.03,\\\"max_withdrawal_amount\\\":13000}},{\\\"id\\\":\\\"CHZ\\\",\\\"name\\\":\\\"Chiliz\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":73,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x3506424f91fd33084466f402d5d97f05f8e3b4af?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":890000}},{\\\"id\\\":\\\"SHIB\\\",\\\"name\\\":\\\"Shiba Inu\\\",\\\"min_size\\\":\\\"100000\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":13213531000}},{\\\"id\\\":\\\"SOL\\\",\\\"name\\\":\\\"Solana\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting SOL deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":31,\\\"sort_order\\\":31,\\\"crypto_address_link\\\":\\\"https://explorer.solana.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.solana.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.12,\\\"max_withdrawal_amount\\\":9000}},{\\\"id\\\":\\\"BOND\\\",\\\"name\\\":\\\"BarnBridge\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":253,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0391d2021f89dc339f60fff84546ea23e337750f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"LPT\\\",\\\"name\\\":\\\"Livepeer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":106,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x58b6a8a3302369daec383334672404ee733ab239?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":50000}},{\\\"id\\\":\\\"QNT\\\",\\\"name\\\":\\\"Quant\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4a220e6096b25eadb88358cb44068a3248254675?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125}},{\\\"id\\\":\\\"KEEP\\\",\\\"name\\\":\\\"Keep Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":266,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":446000}},{\\\"id\\\":\\\"RLY\\\",\\\"name\\\":\\\"Rally\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":304,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"MASK\\\",\\\"name\\\":\\\"Mask Network\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":387,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x69af81e73a73b40adf4f3d4223cd9b1ece623074?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":33069}},{\\\"id\\\":\\\"CLV\\\",\\\"name\\\":\\\"Clover Finance\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":212,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":25510}}]\"\n}"}],"_postman_id":"707b2c6e-8a0e-438f-aa56-e13caf1ee397"},{"name":"FX Currencies Convert","id":"42cd48a6-66e2-4c80-af47-527d8ecb9c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"from_curr\": \"ZAR\",\n    \"to_curr\": \"JPY\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/market_data/fx_convert","urlObject":{"path":["market_data","fx_convert"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[{"id":"21590c8b-6cd3-48f9-8361-769fee89c3ad","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/currencies_traded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3b6bc04a4d7c8322749ebc856db4fe03;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:27 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000046,\n    \"payload\": \"[{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"DASH\\\",\\\"name\\\":\\\"Dash\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":2,\\\"sort_order\\\":47,\\\"crypto_address_link\\\":\\\"https://chain.so/address/DASH/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://chain.so/tx/DASH/{{address}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"OXT\\\",\\\"name\\\":\\\"Orchid\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":48,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ATOM\\\",\\\"name\\\":\\\"Cosmos\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":51,\\\"crypto_address_link\\\":\\\"https://cosmos.bigdipper.live/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://cosmos.bigdipper.live/transactions/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":40000}},{\\\"id\\\":\\\"KNC\\\",\\\"name\\\":\\\"Kyber Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":120,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdd974d5c2e2928dea5f71b9825b8b646686bd200?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":121000}},{\\\"id\\\":\\\"MIR\\\",\\\"name\\\":\\\"Mirror Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":144,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.55,\\\"max_withdrawal_amount\\\":14000}},{\\\"id\\\":\\\"REP\\\",\\\"name\\\":\\\"Augur\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":85,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":7750}},{\\\"id\\\":\\\"ICP\\\",\\\"name\\\":\\\"Internet Computer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting ICP deposits.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":34,\\\"crypto_address_link\\\":\\\"https://dashboard.internetcomputer.org/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.04,\\\"max_withdrawal_amount\\\":20000}},{\\\"id\\\":\\\"CGLD\\\",\\\"name\\\":\\\"Celo\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":4,\\\"sort_order\\\":200,\\\"crypto_address_link\\\":\\\"https://explorer.celo.org/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.celo.org/tx/{{txId}}/token_transfers\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":61250}},{\\\"id\\\":\\\"COMP\\\",\\\"name\\\":\\\"Compound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":140,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc00e94cb662c3520282e6f5717214004a7f26888?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1900}},{\\\"id\\\":\\\"NMR\\\",\\\"name\\\":\\\"Numeraire\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":170,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":6000}},{\\\"id\\\":\\\"OMG\\\",\\\"name\\\":\\\"OMG Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":57,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":200000}},{\\\"id\\\":\\\"BAND\\\",\\\"name\\\":\\\"Band Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":160,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.2,\\\"max_withdrawal_amount\\\":37500}},{\\\"id\\\":\\\"XLM\\\",\\\"name\\\":\\\"Stellar\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://stellar.expert/explorer/public/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://stellar.expert/explorer/public/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":6,\\\"min_withdrawal_amount\\\":2,\\\"max_withdrawal_amount\\\":550000}},{\\\"id\\\":\\\"EOS\\\",\\\"name\\\":\\\"EOS\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":45,\\\"crypto_address_link\\\":\\\"https://www.eosx.io/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://www.eosx.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":360,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"ZRX\\\",\\\"name\\\":\\\"0x\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":90,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xe41d2489571d322189246dafa5ebde1f4699f498?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":375000}},{\\\"id\\\":\\\"BAT\\\",\\\"name\\\":\\\"Basic Attention Token\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":70,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d8775f648430679a709e98d2b0cb6250d2887ef?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":350000}},{\\\"id\\\":\\\"LOOM\\\",\\\"name\\\":\\\"Loom Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":115,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1590000}},{\\\"id\\\":\\\"UNI\\\",\\\"name\\\":\\\"Uniswap\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":220,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":34000}},{\\\"id\\\":\\\"YFI\\\",\\\"name\\\":\\\"yearn.finance\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting yearn.finance deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":215,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0002,\\\"max_withdrawal_amount\\\":42.5}},{\\\"id\\\":\\\"LRC\\\",\\\"name\\\":\\\"Loopring\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting Loopring deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":210,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xEF68e7C694F40c8202821eDF525dE3782458639f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":2.6,\\\"max_withdrawal_amount\\\":1400000}},{\\\"id\\\":\\\"CVC\\\",\\\"name\\\":\\\"Civic\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":125,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x41e5560054824ea6b0732e656e3ad64e20e94e45?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"DNT\\\",\\\"name\\\":\\\"district0x\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":130,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0abdace70d3790235af448c88547603b945604ea?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1670000}},{\\\"id\\\":\\\"MANA\\\",\\\"name\\\":\\\"Decentraland\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":110,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0f5d2fb29fb7d3cfee444a200298f468908cc942?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":850000}},{\\\"id\\\":\\\"GNT\\\",\\\"name\\\":\\\"Golem\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":105,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa74476443119A942dE498590Fe1f2454d7D4aC0d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":423000}},{\\\"id\\\":\\\"REN\\\",\\\"name\\\":\\\"Ren\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":225,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x408e41876cccdc0f92210600ef50372656052a38?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":31,\\\"max_withdrawal_amount\\\":437500}},{\\\"id\\\":\\\"LINK\\\",\\\"name\\\":\\\"Chainlink\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":67,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"BTC\\\",\\\"name\\\":\\\"Bitcoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":3,\\\"sort_order\\\":20,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/btc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/btc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"btc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":500}},{\\\"id\\\":\\\"BAL\\\",\\\"name\\\":\\\"Balancer\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.38,\\\"max_withdrawal_amount\\\":6500}},{\\\"id\\\":\\\"EUR\\\",\\\"name\\\":\\\"Euro\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"€\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":2,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"sepa_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"eur\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"LTC\\\",\\\"name\\\":\\\"Litecoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ł\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":35,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/ltc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/ltc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":30000}},{\\\"id\\\":\\\"GBP\\\",\\\"name\\\":\\\"British Pound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"£\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":3,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"uk_bank_account\\\",\\\"swift_lhv\\\",\\\"swift\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"gbp\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"USD\\\",\\\"name\\\":\\\"United States Dollar\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[\\\"USDC\\\"],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":1,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"bank_wire\\\",\\\"fedwire\\\",\\\"swift_bank_account\\\",\\\"intra_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"usd\\\"],\\\"display_name\\\":\\\"US Dollar\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"ETH\\\",\\\"name\\\":\\\"Ether\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":25,\\\"crypto_address_link\\\":\\\"https://etherscan.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"eth\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":5000}},{\\\"id\\\":\\\"BCH\\\",\\\"name\\\":\\\"Bitcoin Cash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":40,\\\"crypto_address_link\\\":\\\"https://blockchair.com/bitcoin-cash/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://blockchair.com/bitcoin-cash/transaction/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"ETC\\\",\\\"name\\\":\\\"Ether Classic\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"⟠\\\",\\\"network_confirmations\\\":10000,\\\"sort_order\\\":55,\\\"crypto_address_link\\\":\\\"https://gastracker.io/addr/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://gastracker.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"USDC\\\",\\\"name\\\":\\\"USD Coin\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[\\\"USD\\\"],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"usdc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":8500000}},{\\\"id\\\":\\\"ZEC\\\",\\\"name\\\":\\\"Zcash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"ᙇ\\\",\\\"network_confirmations\\\":24,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://zcash.blockexplorer.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://zcash.blockexplorer.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"RLC\\\",\\\"name\\\":\\\"iExec RLC\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":288,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.23,\\\"max_withdrawal_amount\\\":46000}},{\\\"id\\\":\\\"DAI\\\",\\\"name\\\":\\\"Dai\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":100,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"dai\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"WBTC\\\",\\\"name\\\":\\\"Wrapped Bitcoin\\\",\\\"min_size\\\":\\\"0.0001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00054,\\\"max_withdrawal_amount\\\":20}},{\\\"id\\\":\\\"NU\\\",\\\"name\\\":\\\"NuCypher\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":240,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4fe83213d56308330ec302a8bd641f1d0113a4cc?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":325000}},{\\\"id\\\":\\\"FIL\\\",\\\"name\\\":\\\"Filecoin\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":250,\\\"crypto_address_link\\\":\\\"https://filfox.info/en/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://filfox.info/en/message/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":30,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":4000}},{\\\"id\\\":\\\"AAVE\\\",\\\"name\\\":\\\"Aave\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":270,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"SNX\\\",\\\"name\\\":\\\"Synthetix\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":320,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.5,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"BNT\\\",\\\"name\\\":\\\"Bancor\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":300,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.87,\\\"max_withdrawal_amount\\\":110000}},{\\\"id\\\":\\\"GRT\\\",\\\"name\\\":\\\"The Graph\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":290,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d67f3e4bcbd2d6b7a90150c73bdf9ffc6b6de9b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"SUSHI\\\",\\\"name\\\":\\\"SushiSwap\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":340,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":52500}},{\\\"id\\\":\\\"MATIC\\\",\\\"name\\\":\\\"Polygon\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":350,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":81,\\\"max_withdrawal_amount\\\":1675000}},{\\\"id\\\":\\\"MLN\\\",\\\"name\\\":\\\"Enzyme\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":313,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xec67005c4e498ec7f55e092bd1d35cbc47c91892?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"ANKR\\\",\\\"name\\\":\\\"Ankr\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":400,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8290333cef9e6d528dd5618fb97a76f268f3edd4?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":520,\\\"max_withdrawal_amount\\\":1960000}},{\\\"id\\\":\\\"CRV\\\",\\\"name\\\":\\\"Curve DAO Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":420,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd533a949740bb3306d119cc777fa900ba034cd52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.3,\\\"max_withdrawal_amount\\\":83000}},{\\\"id\\\":\\\"STORJ\\\",\\\"name\\\":\\\"Storj\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":440,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":162000}},{\\\"id\\\":\\\"SKL\\\",\\\"name\\\":\\\"SKALE\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":55,\\\"max_withdrawal_amount\\\":800000}},{\\\"id\\\":\\\"AMP\\\",\\\"name\\\":\\\"Amp\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xff20817765cb7f73d4bde2e66e067e58d11095c2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125000}},{\\\"id\\\":\\\"1INCH\\\",\\\"name\\\":\\\"1Inch\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":107,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x111111111117dc0aa78b770fa6a738034120c302?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":3.33,\\\"max_withdrawal_amount\\\":31250}},{\\\"id\\\":\\\"ENJ\\\",\\\"name\\\":\\\"Enjin Coin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.89,\\\"max_withdrawal_amount\\\":48000}},{\\\"id\\\":\\\"NKN\\\",\\\"name\\\":\\\"NKN\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":308,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x5cf04716ba20127f1e2297addcf4b5035000c9eb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":77,\\\"max_withdrawal_amount\\\":385000}},{\\\"id\\\":\\\"OGN\\\",\\\"name\\\":\\\"Origin Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":161,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":15.26,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"FORTH\\\",\\\"name\\\":\\\"Ampleforth Governance Token\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":208,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x77fba179c79de5b7653f68b5039af940ada60ce0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.86,\\\"max_withdrawal_amount\\\":7000}},{\\\"id\\\":\\\"GTC\\\",\\\"name\\\":\\\"Gitcoin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":20700}},{\\\"id\\\":\\\"TRB\\\",\\\"name\\\":\\\"Tellor\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":373,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.17,\\\"max_withdrawal_amount\\\":3300}},{\\\"id\\\":\\\"XRP\\\",\\\"name\\\":\\\"XRP\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://bithomp.com/explorer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":600,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":130000}},{\\\"id\\\":\\\"XTZ\\\",\\\"name\\\":\\\"Tezos\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":100000}},{\\\"id\\\":\\\"CTSI\\\",\\\"name\\\":\\\"Cartesi\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":263,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":23.88,\\\"max_withdrawal_amount\\\":450000}},{\\\"id\\\":\\\"MKR\\\",\\\"name\\\":\\\"Maker\\\",\\\"min_size\\\":\\\"0.001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":49,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":300}},{\\\"id\\\":\\\"UMA\\\",\\\"name\\\":\\\"UMA\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":205,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7f08962d948c5c59cac284035748be21134ebc2b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":21000}},{\\\"id\\\":\\\"DOGE\\\",\\\"name\\\":\\\"Dogecoin\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":29,\\\"crypto_address_link\\\":\\\"https://dogechain.info/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ADA\\\",\\\"name\\\":\\\"Cardano\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":28,\\\"crypto_address_link\\\":\\\"https://explorer.cardano.org/en/address?address={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":750000}},{\\\"id\\\":\\\"USDT\\\",\\\"name\\\":\\\"Tether\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":26,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":13,\\\"max_withdrawal_amount\\\":10000000}},{\\\"id\\\":\\\"DOT\\\",\\\"name\\\":\\\"Polkadot\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting DOT deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://polkascan.io/polkadot/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://polkascan.io/polkadot/balances/transfer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.03,\\\"max_withdrawal_amount\\\":13000}},{\\\"id\\\":\\\"CHZ\\\",\\\"name\\\":\\\"Chiliz\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":73,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x3506424f91fd33084466f402d5d97f05f8e3b4af?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":890000}},{\\\"id\\\":\\\"SHIB\\\",\\\"name\\\":\\\"Shiba Inu\\\",\\\"min_size\\\":\\\"100000\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":13213531000}},{\\\"id\\\":\\\"SOL\\\",\\\"name\\\":\\\"Solana\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting SOL deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":31,\\\"sort_order\\\":31,\\\"crypto_address_link\\\":\\\"https://explorer.solana.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.solana.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.12,\\\"max_withdrawal_amount\\\":9000}},{\\\"id\\\":\\\"BOND\\\",\\\"name\\\":\\\"BarnBridge\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":253,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0391d2021f89dc339f60fff84546ea23e337750f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"LPT\\\",\\\"name\\\":\\\"Livepeer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":106,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x58b6a8a3302369daec383334672404ee733ab239?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":50000}},{\\\"id\\\":\\\"QNT\\\",\\\"name\\\":\\\"Quant\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4a220e6096b25eadb88358cb44068a3248254675?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125}},{\\\"id\\\":\\\"KEEP\\\",\\\"name\\\":\\\"Keep Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":266,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":446000}},{\\\"id\\\":\\\"RLY\\\",\\\"name\\\":\\\"Rally\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":304,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"MASK\\\",\\\"name\\\":\\\"Mask Network\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":387,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x69af81e73a73b40adf4f3d4223cd9b1ece623074?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":33069}},{\\\"id\\\":\\\"CLV\\\",\\\"name\\\":\\\"Clover Finance\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":212,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":25510}}]\"\n}"}],"_postman_id":"42cd48a6-66e2-4c80-af47-527d8ecb9c4f"},{"name":"FX Currencies Historical Data","id":"99238b33-3f93-49c9-93ba-b40ec0055dcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"USDCOP\",\n    \"start_date\": \"2021-10-01\",\n    \"end_date\": \"2022-08-10\",\n    \"granularity\": \"DAY\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/market_data/fx_historical","urlObject":{"protocol":"https","path":["market_data","fx_historical"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[{"id":"e769ab7b-0289-4543-ab66-51aa2b315a2f","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/currencies_traded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3b6bc04a4d7c8322749ebc856db4fe03;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:27 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000046,\n    \"payload\": \"[{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"DASH\\\",\\\"name\\\":\\\"Dash\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":2,\\\"sort_order\\\":47,\\\"crypto_address_link\\\":\\\"https://chain.so/address/DASH/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://chain.so/tx/DASH/{{address}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"OXT\\\",\\\"name\\\":\\\"Orchid\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":48,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ATOM\\\",\\\"name\\\":\\\"Cosmos\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":51,\\\"crypto_address_link\\\":\\\"https://cosmos.bigdipper.live/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://cosmos.bigdipper.live/transactions/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":40000}},{\\\"id\\\":\\\"KNC\\\",\\\"name\\\":\\\"Kyber Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":120,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdd974d5c2e2928dea5f71b9825b8b646686bd200?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":121000}},{\\\"id\\\":\\\"MIR\\\",\\\"name\\\":\\\"Mirror Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":144,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.55,\\\"max_withdrawal_amount\\\":14000}},{\\\"id\\\":\\\"REP\\\",\\\"name\\\":\\\"Augur\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":85,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":7750}},{\\\"id\\\":\\\"ICP\\\",\\\"name\\\":\\\"Internet Computer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting ICP deposits.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":34,\\\"crypto_address_link\\\":\\\"https://dashboard.internetcomputer.org/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.04,\\\"max_withdrawal_amount\\\":20000}},{\\\"id\\\":\\\"CGLD\\\",\\\"name\\\":\\\"Celo\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":4,\\\"sort_order\\\":200,\\\"crypto_address_link\\\":\\\"https://explorer.celo.org/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.celo.org/tx/{{txId}}/token_transfers\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":61250}},{\\\"id\\\":\\\"COMP\\\",\\\"name\\\":\\\"Compound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":140,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc00e94cb662c3520282e6f5717214004a7f26888?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1900}},{\\\"id\\\":\\\"NMR\\\",\\\"name\\\":\\\"Numeraire\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":170,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":6000}},{\\\"id\\\":\\\"OMG\\\",\\\"name\\\":\\\"OMG Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":57,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":200000}},{\\\"id\\\":\\\"BAND\\\",\\\"name\\\":\\\"Band Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":160,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.2,\\\"max_withdrawal_amount\\\":37500}},{\\\"id\\\":\\\"XLM\\\",\\\"name\\\":\\\"Stellar\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://stellar.expert/explorer/public/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://stellar.expert/explorer/public/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":6,\\\"min_withdrawal_amount\\\":2,\\\"max_withdrawal_amount\\\":550000}},{\\\"id\\\":\\\"EOS\\\",\\\"name\\\":\\\"EOS\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":45,\\\"crypto_address_link\\\":\\\"https://www.eosx.io/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://www.eosx.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":360,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"ZRX\\\",\\\"name\\\":\\\"0x\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":90,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xe41d2489571d322189246dafa5ebde1f4699f498?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":375000}},{\\\"id\\\":\\\"BAT\\\",\\\"name\\\":\\\"Basic Attention Token\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":70,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d8775f648430679a709e98d2b0cb6250d2887ef?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":350000}},{\\\"id\\\":\\\"LOOM\\\",\\\"name\\\":\\\"Loom Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":115,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1590000}},{\\\"id\\\":\\\"UNI\\\",\\\"name\\\":\\\"Uniswap\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":220,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":34000}},{\\\"id\\\":\\\"YFI\\\",\\\"name\\\":\\\"yearn.finance\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting yearn.finance deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":215,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0002,\\\"max_withdrawal_amount\\\":42.5}},{\\\"id\\\":\\\"LRC\\\",\\\"name\\\":\\\"Loopring\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting Loopring deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":210,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xEF68e7C694F40c8202821eDF525dE3782458639f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":2.6,\\\"max_withdrawal_amount\\\":1400000}},{\\\"id\\\":\\\"CVC\\\",\\\"name\\\":\\\"Civic\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":125,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x41e5560054824ea6b0732e656e3ad64e20e94e45?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"DNT\\\",\\\"name\\\":\\\"district0x\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":130,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0abdace70d3790235af448c88547603b945604ea?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1670000}},{\\\"id\\\":\\\"MANA\\\",\\\"name\\\":\\\"Decentraland\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":110,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0f5d2fb29fb7d3cfee444a200298f468908cc942?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":850000}},{\\\"id\\\":\\\"GNT\\\",\\\"name\\\":\\\"Golem\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":105,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa74476443119A942dE498590Fe1f2454d7D4aC0d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":423000}},{\\\"id\\\":\\\"REN\\\",\\\"name\\\":\\\"Ren\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":225,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x408e41876cccdc0f92210600ef50372656052a38?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":31,\\\"max_withdrawal_amount\\\":437500}},{\\\"id\\\":\\\"LINK\\\",\\\"name\\\":\\\"Chainlink\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":67,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"BTC\\\",\\\"name\\\":\\\"Bitcoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":3,\\\"sort_order\\\":20,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/btc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/btc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"btc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":500}},{\\\"id\\\":\\\"BAL\\\",\\\"name\\\":\\\"Balancer\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.38,\\\"max_withdrawal_amount\\\":6500}},{\\\"id\\\":\\\"EUR\\\",\\\"name\\\":\\\"Euro\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"€\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":2,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"sepa_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"eur\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"LTC\\\",\\\"name\\\":\\\"Litecoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ł\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":35,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/ltc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/ltc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":30000}},{\\\"id\\\":\\\"GBP\\\",\\\"name\\\":\\\"British Pound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"£\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":3,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"uk_bank_account\\\",\\\"swift_lhv\\\",\\\"swift\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"gbp\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"USD\\\",\\\"name\\\":\\\"United States Dollar\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[\\\"USDC\\\"],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":1,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"bank_wire\\\",\\\"fedwire\\\",\\\"swift_bank_account\\\",\\\"intra_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"usd\\\"],\\\"display_name\\\":\\\"US Dollar\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"ETH\\\",\\\"name\\\":\\\"Ether\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":25,\\\"crypto_address_link\\\":\\\"https://etherscan.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"eth\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":5000}},{\\\"id\\\":\\\"BCH\\\",\\\"name\\\":\\\"Bitcoin Cash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":40,\\\"crypto_address_link\\\":\\\"https://blockchair.com/bitcoin-cash/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://blockchair.com/bitcoin-cash/transaction/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"ETC\\\",\\\"name\\\":\\\"Ether Classic\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"⟠\\\",\\\"network_confirmations\\\":10000,\\\"sort_order\\\":55,\\\"crypto_address_link\\\":\\\"https://gastracker.io/addr/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://gastracker.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"USDC\\\",\\\"name\\\":\\\"USD Coin\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[\\\"USD\\\"],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"usdc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":8500000}},{\\\"id\\\":\\\"ZEC\\\",\\\"name\\\":\\\"Zcash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"ᙇ\\\",\\\"network_confirmations\\\":24,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://zcash.blockexplorer.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://zcash.blockexplorer.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"RLC\\\",\\\"name\\\":\\\"iExec RLC\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":288,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.23,\\\"max_withdrawal_amount\\\":46000}},{\\\"id\\\":\\\"DAI\\\",\\\"name\\\":\\\"Dai\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":100,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"dai\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"WBTC\\\",\\\"name\\\":\\\"Wrapped Bitcoin\\\",\\\"min_size\\\":\\\"0.0001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00054,\\\"max_withdrawal_amount\\\":20}},{\\\"id\\\":\\\"NU\\\",\\\"name\\\":\\\"NuCypher\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":240,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4fe83213d56308330ec302a8bd641f1d0113a4cc?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":325000}},{\\\"id\\\":\\\"FIL\\\",\\\"name\\\":\\\"Filecoin\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":250,\\\"crypto_address_link\\\":\\\"https://filfox.info/en/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://filfox.info/en/message/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":30,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":4000}},{\\\"id\\\":\\\"AAVE\\\",\\\"name\\\":\\\"Aave\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":270,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"SNX\\\",\\\"name\\\":\\\"Synthetix\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":320,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.5,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"BNT\\\",\\\"name\\\":\\\"Bancor\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":300,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.87,\\\"max_withdrawal_amount\\\":110000}},{\\\"id\\\":\\\"GRT\\\",\\\"name\\\":\\\"The Graph\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":290,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d67f3e4bcbd2d6b7a90150c73bdf9ffc6b6de9b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"SUSHI\\\",\\\"name\\\":\\\"SushiSwap\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":340,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":52500}},{\\\"id\\\":\\\"MATIC\\\",\\\"name\\\":\\\"Polygon\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":350,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":81,\\\"max_withdrawal_amount\\\":1675000}},{\\\"id\\\":\\\"MLN\\\",\\\"name\\\":\\\"Enzyme\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":313,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xec67005c4e498ec7f55e092bd1d35cbc47c91892?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"ANKR\\\",\\\"name\\\":\\\"Ankr\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":400,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8290333cef9e6d528dd5618fb97a76f268f3edd4?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":520,\\\"max_withdrawal_amount\\\":1960000}},{\\\"id\\\":\\\"CRV\\\",\\\"name\\\":\\\"Curve DAO Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":420,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd533a949740bb3306d119cc777fa900ba034cd52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.3,\\\"max_withdrawal_amount\\\":83000}},{\\\"id\\\":\\\"STORJ\\\",\\\"name\\\":\\\"Storj\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":440,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":162000}},{\\\"id\\\":\\\"SKL\\\",\\\"name\\\":\\\"SKALE\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":55,\\\"max_withdrawal_amount\\\":800000}},{\\\"id\\\":\\\"AMP\\\",\\\"name\\\":\\\"Amp\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xff20817765cb7f73d4bde2e66e067e58d11095c2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125000}},{\\\"id\\\":\\\"1INCH\\\",\\\"name\\\":\\\"1Inch\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":107,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x111111111117dc0aa78b770fa6a738034120c302?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":3.33,\\\"max_withdrawal_amount\\\":31250}},{\\\"id\\\":\\\"ENJ\\\",\\\"name\\\":\\\"Enjin Coin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.89,\\\"max_withdrawal_amount\\\":48000}},{\\\"id\\\":\\\"NKN\\\",\\\"name\\\":\\\"NKN\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":308,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x5cf04716ba20127f1e2297addcf4b5035000c9eb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":77,\\\"max_withdrawal_amount\\\":385000}},{\\\"id\\\":\\\"OGN\\\",\\\"name\\\":\\\"Origin Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":161,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":15.26,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"FORTH\\\",\\\"name\\\":\\\"Ampleforth Governance Token\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":208,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x77fba179c79de5b7653f68b5039af940ada60ce0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.86,\\\"max_withdrawal_amount\\\":7000}},{\\\"id\\\":\\\"GTC\\\",\\\"name\\\":\\\"Gitcoin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":20700}},{\\\"id\\\":\\\"TRB\\\",\\\"name\\\":\\\"Tellor\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":373,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.17,\\\"max_withdrawal_amount\\\":3300}},{\\\"id\\\":\\\"XRP\\\",\\\"name\\\":\\\"XRP\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://bithomp.com/explorer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":600,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":130000}},{\\\"id\\\":\\\"XTZ\\\",\\\"name\\\":\\\"Tezos\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":100000}},{\\\"id\\\":\\\"CTSI\\\",\\\"name\\\":\\\"Cartesi\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":263,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":23.88,\\\"max_withdrawal_amount\\\":450000}},{\\\"id\\\":\\\"MKR\\\",\\\"name\\\":\\\"Maker\\\",\\\"min_size\\\":\\\"0.001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":49,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":300}},{\\\"id\\\":\\\"UMA\\\",\\\"name\\\":\\\"UMA\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":205,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7f08962d948c5c59cac284035748be21134ebc2b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":21000}},{\\\"id\\\":\\\"DOGE\\\",\\\"name\\\":\\\"Dogecoin\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":29,\\\"crypto_address_link\\\":\\\"https://dogechain.info/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ADA\\\",\\\"name\\\":\\\"Cardano\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":28,\\\"crypto_address_link\\\":\\\"https://explorer.cardano.org/en/address?address={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":750000}},{\\\"id\\\":\\\"USDT\\\",\\\"name\\\":\\\"Tether\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":26,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":13,\\\"max_withdrawal_amount\\\":10000000}},{\\\"id\\\":\\\"DOT\\\",\\\"name\\\":\\\"Polkadot\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting DOT deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://polkascan.io/polkadot/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://polkascan.io/polkadot/balances/transfer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.03,\\\"max_withdrawal_amount\\\":13000}},{\\\"id\\\":\\\"CHZ\\\",\\\"name\\\":\\\"Chiliz\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":73,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x3506424f91fd33084466f402d5d97f05f8e3b4af?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":890000}},{\\\"id\\\":\\\"SHIB\\\",\\\"name\\\":\\\"Shiba Inu\\\",\\\"min_size\\\":\\\"100000\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":13213531000}},{\\\"id\\\":\\\"SOL\\\",\\\"name\\\":\\\"Solana\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting SOL deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":31,\\\"sort_order\\\":31,\\\"crypto_address_link\\\":\\\"https://explorer.solana.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.solana.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.12,\\\"max_withdrawal_amount\\\":9000}},{\\\"id\\\":\\\"BOND\\\",\\\"name\\\":\\\"BarnBridge\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":253,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0391d2021f89dc339f60fff84546ea23e337750f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"LPT\\\",\\\"name\\\":\\\"Livepeer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":106,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x58b6a8a3302369daec383334672404ee733ab239?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":50000}},{\\\"id\\\":\\\"QNT\\\",\\\"name\\\":\\\"Quant\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4a220e6096b25eadb88358cb44068a3248254675?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125}},{\\\"id\\\":\\\"KEEP\\\",\\\"name\\\":\\\"Keep Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":266,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":446000}},{\\\"id\\\":\\\"RLY\\\",\\\"name\\\":\\\"Rally\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":304,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"MASK\\\",\\\"name\\\":\\\"Mask Network\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":387,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x69af81e73a73b40adf4f3d4223cd9b1ece623074?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":33069}},{\\\"id\\\":\\\"CLV\\\",\\\"name\\\":\\\"Clover Finance\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":212,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":25510}}]\"\n}"}],"_postman_id":"99238b33-3f93-49c9-93ba-b40ec0055dcc"},{"name":"FX Rate Chenge Over Time","id":"c56191aa-4196-46a2-ba7a-a8c9aba43440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"currency\": \"USDCOP\",\n    \"start_date\": \"2021-10-01\",\n    \"end_date\": \"2022-08-10\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.bloxcross-dev.com/market_data/fx_rate_change","urlObject":{"protocol":"https","path":["market_data","fx_rate_change"],"host":["api","bloxcross-dev","com"],"query":[],"variable":[]}},"response":[{"id":"44da3c00-7a9b-4232-b760-2a0c1de5908e","name":"Example 1","originalRequest":{"method":"GET","header":[],"url":"{{md_url}}/market_data/currencies_traded"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cloud-Trace-Context","value":"3b6bc04a4d7c8322749ebc856db4fe03;o=1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 21 Jul 2021 13:52:27 GMT"},{"key":"Server","value":"Google Frontend"},{"key":"Cache-Control","value":"private"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-T051=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 1000046,\n    \"payload\": \"[{\\\"id\\\":\\\"ALGO\\\",\\\"name\\\":\\\"Algorand\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"A\\\",\\\"network_confirmations\\\":1,\\\"sort_order\\\":93,\\\"crypto_address_link\\\":\\\"https://algoexplorer.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://algoexplorer.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"DASH\\\",\\\"name\\\":\\\"Dash\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":2,\\\"sort_order\\\":47,\\\"crypto_address_link\\\":\\\"https://chain.so/address/DASH/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://chain.so/tx/DASH/{{address}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"OXT\\\",\\\"name\\\":\\\"Orchid\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":48,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ATOM\\\",\\\"name\\\":\\\"Cosmos\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":51,\\\"crypto_address_link\\\":\\\"https://cosmos.bigdipper.live/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://cosmos.bigdipper.live/transactions/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":5,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":40000}},{\\\"id\\\":\\\"KNC\\\",\\\"name\\\":\\\"Kyber Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":120,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdd974d5c2e2928dea5f71b9825b8b646686bd200?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":121000}},{\\\"id\\\":\\\"MIR\\\",\\\"name\\\":\\\"Mirror Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":144,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x09a3EcAFa817268f77BE1283176B946C4ff2E608?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.55,\\\"max_withdrawal_amount\\\":14000}},{\\\"id\\\":\\\"REP\\\",\\\"name\\\":\\\"Augur\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":85,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1985365e9f78359a9B6AD760e32412f4a445E862?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":7750}},{\\\"id\\\":\\\"ICP\\\",\\\"name\\\":\\\"Internet Computer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting ICP deposits.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":34,\\\"crypto_address_link\\\":\\\"https://dashboard.internetcomputer.org/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.04,\\\"max_withdrawal_amount\\\":20000}},{\\\"id\\\":\\\"CGLD\\\",\\\"name\\\":\\\"Celo\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":4,\\\"sort_order\\\":200,\\\"crypto_address_link\\\":\\\"https://explorer.celo.org/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.celo.org/tx/{{txId}}/token_transfers\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":61250}},{\\\"id\\\":\\\"COMP\\\",\\\"name\\\":\\\"Compound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":140,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc00e94cb662c3520282e6f5717214004a7f26888?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1900}},{\\\"id\\\":\\\"NMR\\\",\\\"name\\\":\\\"Numeraire\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":170,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.1,\\\"max_withdrawal_amount\\\":6000}},{\\\"id\\\":\\\"OMG\\\",\\\"name\\\":\\\"OMG Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":57,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd26114cd6EE289AccF82350c8d8487fedB8A0C07?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":200000}},{\\\"id\\\":\\\"BAND\\\",\\\"name\\\":\\\"Band Protocol\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":160,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba11d00c5f74255f56a5e366f4f77f5a186d7f55?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.2,\\\"max_withdrawal_amount\\\":37500}},{\\\"id\\\":\\\"XLM\\\",\\\"name\\\":\\\"Stellar\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://stellar.expert/explorer/public/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://stellar.expert/explorer/public/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":6,\\\"min_withdrawal_amount\\\":2,\\\"max_withdrawal_amount\\\":550000}},{\\\"id\\\":\\\"EOS\\\",\\\"name\\\":\\\"EOS\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":45,\\\"crypto_address_link\\\":\\\"https://www.eosx.io/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://www.eosx.io/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":360,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"ZRX\\\",\\\"name\\\":\\\"0x\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":90,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xe41d2489571d322189246dafa5ebde1f4699f498?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":375000}},{\\\"id\\\":\\\"BAT\\\",\\\"name\\\":\\\"Basic Attention Token\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":70,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d8775f648430679a709e98d2b0cb6250d2887ef?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":350000}},{\\\"id\\\":\\\"LOOM\\\",\\\"name\\\":\\\"Loom Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":115,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1590000}},{\\\"id\\\":\\\"UNI\\\",\\\"name\\\":\\\"Uniswap\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":220,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":34000}},{\\\"id\\\":\\\"YFI\\\",\\\"name\\\":\\\"yearn.finance\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting yearn.finance deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":215,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0002,\\\"max_withdrawal_amount\\\":42.5}},{\\\"id\\\":\\\"LRC\\\",\\\"name\\\":\\\"Loopring\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting Loopring deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":210,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xEF68e7C694F40c8202821eDF525dE3782458639f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":2.6,\\\"max_withdrawal_amount\\\":1400000}},{\\\"id\\\":\\\"CVC\\\",\\\"name\\\":\\\"Civic\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":125,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x41e5560054824ea6b0732e656e3ad64e20e94e45?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"DNT\\\",\\\"name\\\":\\\"district0x\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":130,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0abdace70d3790235af448c88547603b945604ea?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1670000}},{\\\"id\\\":\\\"MANA\\\",\\\"name\\\":\\\"Decentraland\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":110,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0f5d2fb29fb7d3cfee444a200298f468908cc942?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":850000}},{\\\"id\\\":\\\"GNT\\\",\\\"name\\\":\\\"Golem\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":105,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa74476443119A942dE498590Fe1f2454d7D4aC0d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":423000}},{\\\"id\\\":\\\"REN\\\",\\\"name\\\":\\\"Ren\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":225,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x408e41876cccdc0f92210600ef50372656052a38?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":31,\\\"max_withdrawal_amount\\\":437500}},{\\\"id\\\":\\\"LINK\\\",\\\"name\\\":\\\"Chainlink\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":67,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"BTC\\\",\\\"name\\\":\\\"Bitcoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":3,\\\"sort_order\\\":20,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/btc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/btc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"btc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.0001,\\\"max_withdrawal_amount\\\":500}},{\\\"id\\\":\\\"BAL\\\",\\\"name\\\":\\\"Balancer\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xba100000625a3754423978a60c9317c58a424e3D?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.38,\\\"max_withdrawal_amount\\\":6500}},{\\\"id\\\":\\\"EUR\\\",\\\"name\\\":\\\"Euro\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"€\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":2,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"sepa_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"eur\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"LTC\\\",\\\"name\\\":\\\"Litecoin\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ł\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":35,\\\"crypto_address_link\\\":\\\"https://live.blockcypher.com/ltc/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://live.blockcypher.com/ltc/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":30000}},{\\\"id\\\":\\\"GBP\\\",\\\"name\\\":\\\"British Pound\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"£\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":3,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"uk_bank_account\\\",\\\"swift_lhv\\\",\\\"swift\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"gbp\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"USD\\\",\\\"name\\\":\\\"United States Dollar\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[\\\"USDC\\\"],\\\"details\\\":{\\\"type\\\":\\\"fiat\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":1,\\\"crypto_address_link\\\":\\\"\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"bank_wire\\\",\\\"fedwire\\\",\\\"swift_bank_account\\\",\\\"intra_bank_account\\\"],\\\"group_types\\\":[\\\"fiat\\\",\\\"usd\\\"],\\\"display_name\\\":\\\"US Dollar\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":0}},{\\\"id\\\":\\\"ETH\\\",\\\"name\\\":\\\"Ether\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":25,\\\"crypto_address_link\\\":\\\"https://etherscan.io/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"eth\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":5000}},{\\\"id\\\":\\\"BCH\\\",\\\"name\\\":\\\"Bitcoin Cash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"₿\\\",\\\"network_confirmations\\\":12,\\\"sort_order\\\":40,\\\"crypto_address_link\\\":\\\"https://blockchair.com/bitcoin-cash/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://blockchair.com/bitcoin-cash/transaction/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"ETC\\\",\\\"name\\\":\\\"Ether Classic\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"⟠\\\",\\\"network_confirmations\\\":10000,\\\"sort_order\\\":55,\\\"crypto_address_link\\\":\\\"https://gastracker.io/addr/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://gastracker.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":10000}},{\\\"id\\\":\\\"USDC\\\",\\\"name\\\":\\\"USD Coin\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[\\\"USD\\\"],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"usdc\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.001,\\\"max_withdrawal_amount\\\":8500000}},{\\\"id\\\":\\\"ZEC\\\",\\\"name\\\":\\\"Zcash\\\",\\\"min_size\\\":\\\"0.00000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"ᙇ\\\",\\\"network_confirmations\\\":24,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://zcash.blockexplorer.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://zcash.blockexplorer.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":8500}},{\\\"id\\\":\\\"RLC\\\",\\\"name\\\":\\\"iExec RLC\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":288,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.23,\\\"max_withdrawal_amount\\\":46000}},{\\\"id\\\":\\\"DAI\\\",\\\"name\\\":\\\"Dai\\\",\\\"min_size\\\":\\\"0.00001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"Ξ\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":100,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[\\\"stablecoin\\\",\\\"dai\\\",\\\"crypto\\\"],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.01,\\\"max_withdrawal_amount\\\":1130000}},{\\\"id\\\":\\\"WBTC\\\",\\\"name\\\":\\\"Wrapped Bitcoin\\\",\\\"min_size\\\":\\\"0.0001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.00000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":230,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00054,\\\"max_withdrawal_amount\\\":20}},{\\\"id\\\":\\\"NU\\\",\\\"name\\\":\\\"NuCypher\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":240,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4fe83213d56308330ec302a8bd641f1d0113a4cc?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":325000}},{\\\"id\\\":\\\"FIL\\\",\\\"name\\\":\\\"Filecoin\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":250,\\\"crypto_address_link\\\":\\\"https://filfox.info/en/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://filfox.info/en/message/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":30,\\\"min_withdrawal_amount\\\":0,\\\"max_withdrawal_amount\\\":4000}},{\\\"id\\\":\\\"AAVE\\\",\\\"name\\\":\\\"Aave\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":270,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"SNX\\\",\\\"name\\\":\\\"Synthetix\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":320,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.5,\\\"max_withdrawal_amount\\\":36000}},{\\\"id\\\":\\\"BNT\\\",\\\"name\\\":\\\"Bancor\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":300,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.87,\\\"max_withdrawal_amount\\\":110000}},{\\\"id\\\":\\\"GRT\\\",\\\"name\\\":\\\"The Graph\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":290,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0d67f3e4bcbd2d6b7a90150c73bdf9ffc6b6de9b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":700000}},{\\\"id\\\":\\\"SUSHI\\\",\\\"name\\\":\\\"SushiSwap\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":340,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x6b3595068778dd592e39a122f4f5a5cf09c90fe2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":52500}},{\\\"id\\\":\\\"MATIC\\\",\\\"name\\\":\\\"Polygon\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":350,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":81,\\\"max_withdrawal_amount\\\":1675000}},{\\\"id\\\":\\\"MLN\\\",\\\"name\\\":\\\"Enzyme\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":313,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xec67005c4e498ec7f55e092bd1d35cbc47c91892?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":1500}},{\\\"id\\\":\\\"ANKR\\\",\\\"name\\\":\\\"Ankr\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":400,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8290333cef9e6d528dd5618fb97a76f268f3edd4?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":520,\\\"max_withdrawal_amount\\\":1960000}},{\\\"id\\\":\\\"CRV\\\",\\\"name\\\":\\\"Curve DAO Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":420,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xd533a949740bb3306d119cc777fa900ba034cd52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":6.3,\\\"max_withdrawal_amount\\\":83000}},{\\\"id\\\":\\\"STORJ\\\",\\\"name\\\":\\\"Storj\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":440,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":20,\\\"max_withdrawal_amount\\\":162000}},{\\\"id\\\":\\\"SKL\\\",\\\"name\\\":\\\"SKALE\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x00c83aecc790e8a4453e5dd3b0b4b3680501a7a7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":55,\\\"max_withdrawal_amount\\\":800000}},{\\\"id\\\":\\\"AMP\\\",\\\"name\\\":\\\"Amp\\\",\\\"min_size\\\":\\\"10\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":65,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xff20817765cb7f73d4bde2e66e067e58d11095c2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125000}},{\\\"id\\\":\\\"1INCH\\\",\\\"name\\\":\\\"1Inch\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":107,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x111111111117dc0aa78b770fa6a738034120c302?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":3.33,\\\"max_withdrawal_amount\\\":31250}},{\\\"id\\\":\\\"ENJ\\\",\\\"name\\\":\\\"Enjin Coin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":50,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":5.89,\\\"max_withdrawal_amount\\\":48000}},{\\\"id\\\":\\\"NKN\\\",\\\"name\\\":\\\"NKN\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":308,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x5cf04716ba20127f1e2297addcf4b5035000c9eb?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":77,\\\"max_withdrawal_amount\\\":385000}},{\\\"id\\\":\\\"OGN\\\",\\\"name\\\":\\\"Origin Token\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":161,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x8207c1ffc5b6804f6024322ccf34f29c3541ae26?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":15.26,\\\"max_withdrawal_amount\\\":70000}},{\\\"id\\\":\\\"FORTH\\\",\\\"name\\\":\\\"Ampleforth Governance Token\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":208,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x77fba179c79de5b7653f68b5039af940ada60ce0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.86,\\\"max_withdrawal_amount\\\":7000}},{\\\"id\\\":\\\"GTC\\\",\\\"name\\\":\\\"Gitcoin\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":360,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xde30da39c46104798bb5aa3fe8b9e0e1f348163f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":20700}},{\\\"id\\\":\\\"TRB\\\",\\\"name\\\":\\\"Tellor\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":373,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x88df592f8eb5d7bd38bfef7deb0fbc02cf3778a0?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.17,\\\"max_withdrawal_amount\\\":3300}},{\\\"id\\\":\\\"XRP\\\",\\\"name\\\":\\\"XRP\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"$\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://bithomp.com/explorer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":600,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":130000}},{\\\"id\\\":\\\"XTZ\\\",\\\"name\\\":\\\"Tezos\\\",\\\"min_size\\\":\\\"0.000001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":0,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://bithomp.com/explorer/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":22,\\\"max_withdrawal_amount\\\":100000}},{\\\"id\\\":\\\"CTSI\\\",\\\"name\\\":\\\"Cartesi\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":263,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x491604c0fdf08347dd1fa4ee062a822a5dd06b5d?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":23.88,\\\"max_withdrawal_amount\\\":450000}},{\\\"id\\\":\\\"MKR\\\",\\\"name\\\":\\\"Maker\\\",\\\"min_size\\\":\\\"0.001\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.0001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":49,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.00001,\\\"max_withdrawal_amount\\\":300}},{\\\"id\\\":\\\"UMA\\\",\\\"name\\\":\\\"UMA\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":205,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x7f08962d948c5c59cac284035748be21134ebc2b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":0.07,\\\"max_withdrawal_amount\\\":21000}},{\\\"id\\\":\\\"DOGE\\\",\\\"name\\\":\\\"Dogecoin\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":60,\\\"sort_order\\\":29,\\\"crypto_address_link\\\":\\\"https://dogechain.info/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":500000}},{\\\"id\\\":\\\"ADA\\\",\\\"name\\\":\\\"Cardano\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":28,\\\"crypto_address_link\\\":\\\"https://explorer.cardano.org/en/address?address={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1,\\\"max_withdrawal_amount\\\":750000}},{\\\"id\\\":\\\"USDT\\\",\\\"name\\\":\\\"Tether\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":26,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":13,\\\"max_withdrawal_amount\\\":10000000}},{\\\"id\\\":\\\"DOT\\\",\\\"name\\\":\\\"Polkadot\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting DOT deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":10,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://polkascan.io/polkadot/account/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://polkascan.io/polkadot/balances/transfer/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.03,\\\"max_withdrawal_amount\\\":13000}},{\\\"id\\\":\\\"CHZ\\\",\\\"name\\\":\\\"Chiliz\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":73,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x3506424f91fd33084466f402d5d97f05f8e3b4af?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":890000}},{\\\"id\\\":\\\"SHIB\\\",\\\"name\\\":\\\"Shiba Inu\\\",\\\"min_size\\\":\\\"100000\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":30,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":13213531000}},{\\\"id\\\":\\\"SOL\\\",\\\"name\\\":\\\"Solana\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"We've started accepting SOL deposits. Trading will begin shortly.\\\",\\\"max_precision\\\":\\\"0.000000001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":31,\\\"sort_order\\\":31,\\\"crypto_address_link\\\":\\\"https://explorer.solana.com/address/{{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://explorer.solana.com/tx/{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1.12,\\\"max_withdrawal_amount\\\":9000}},{\\\"id\\\":\\\"BOND\\\",\\\"name\\\":\\\"BarnBridge\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":253,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x0391d2021f89dc339f60fff84546ea23e337750f?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"LPT\\\",\\\"name\\\":\\\"Livepeer\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":106,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x58b6a8a3302369daec383334672404ee733ab239?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":50000}},{\\\"id\\\":\\\"QNT\\\",\\\"name\\\":\\\"Quant\\\",\\\"min_size\\\":\\\"0.01\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.001\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":80,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x4a220e6096b25eadb88358cb44068a3248254675?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":3125}},{\\\"id\\\":\\\"KEEP\\\",\\\"name\\\":\\\"Keep Network\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":266,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x85eee30c52b0b379b046fb0f85f4f3dc3009afec?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":446000}},{\\\"id\\\":\\\"RLY\\\",\\\"name\\\":\\\"Rally\\\",\\\"min_size\\\":\\\"1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"1\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":304,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":2500}},{\\\"id\\\":\\\"MASK\\\",\\\"name\\\":\\\"Mask Network\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":387,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x69af81e73a73b40adf4f3d4223cd9b1ece623074?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":33069}},{\\\"id\\\":\\\"CLV\\\",\\\"name\\\":\\\"Clover Finance\\\",\\\"min_size\\\":\\\"0.1\\\",\\\"status\\\":\\\"online\\\",\\\"message\\\":\\\"\\\",\\\"max_precision\\\":\\\"0.01\\\",\\\"convertible_to\\\":[],\\\"details\\\":{\\\"type\\\":\\\"crypto\\\",\\\"symbol\\\":\\\"\\\",\\\"network_confirmations\\\":35,\\\"sort_order\\\":212,\\\"crypto_address_link\\\":\\\"https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52?a={{address}}\\\",\\\"crypto_transaction_link\\\":\\\"https://etherscan.io/tx/0x{{txId}}\\\",\\\"push_payment_methods\\\":[\\\"crypto\\\"],\\\"group_types\\\":[],\\\"display_name\\\":\\\"\\\",\\\"processing_time_seconds\\\":0,\\\"min_withdrawal_amount\\\":1e-18,\\\"max_withdrawal_amount\\\":25510}}]\"\n}"}],"_postman_id":"c56191aa-4196-46a2-ba7a-a8c9aba43440"}],"id":"35ed26eb-b6d7-486d-a8a5-62489b7282c1","_postman_id":"35ed26eb-b6d7-486d-a8a5-62489b7282c1","description":""},{"name":"PAYMENTS REFERENTIAL DATA","item":[{"name":"Find Payment Provider","id":"ca8d8e35-b75b-47ac-8ee4-c4bd9e175f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"direction\": \"in\",\n\"country_code\": \"BR\",\n\"paymentMethodType\": \"bank\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/find_payment_providers","description":"<p>Params:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndirection: \"in|out\",\ncountry: \"2-letter code\",\npaymentMethodType: \"bank|digitalWallet|card|emoney|cash\"\n}\n</code></pre><p>Notes:</p>\n<p>directUsage:\n    - boolean\n    Returns payment method types that can be used without having been previously stored.</p>\n<p>direction:\n    - string\n    Enum: \"in\" \"out\"\n    Query variable to filter payment method types by the direction of the funds (in/out).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Sample:\n\n[\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"balotoin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efectyin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntoredin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Puntored\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"superpagosin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Super Pagos\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"westernunionin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Western Union\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"baloto-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efecty-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntored-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Punto Red\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n}\n</code></pre><p>]</p>\n","urlObject":{"path":["payments","find_payment_providers"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca8d8e35-b75b-47ac-8ee4-c4bd9e175f4d"},{"name":"Deposit Allowed Instruments","id":"695d5835-7861-4af0-abd1-719018ef6e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_deposit_instruments","urlObject":{"path":["payments","get_deposit_instruments"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"695d5835-7861-4af0-abd1-719018ef6e83"},{"name":"Holding Allowed Instruments","id":"e38ba10a-900f-4192-9d5b-18e8e580efeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_hold_instruments","urlObject":{"path":["payments","get_hold_instruments"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e38ba10a-900f-4192-9d5b-18e8e580efeb"},{"name":"Withdraw Allowed Instruments","id":"c96fe922-20e0-4af6-88ce-2dedf5b6ba0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/get_withdraw_instruments","urlObject":{"path":["payments","get_withdraw_instruments"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c96fe922-20e0-4af6-88ce-2dedf5b6ba0b"},{"name":"Countries Ebanled for Deposit","id":"a8819745-86cf-4c5c-90c9-dacc21918838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/deposit_enabled_countries","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["payments","deposit_enabled_countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8819745-86cf-4c5c-90c9-dacc21918838"},{"name":"Countries Enabled for Payout","id":"a9bab6fc-7a33-4221-8cc5-c0b0024afa5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/payout_enabled_countries","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["payments","payout_enabled_countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9bab6fc-7a33-4221-8cc5-c0b0024afa5b"},{"name":"Validate US Bank Routing Number","id":"4e656c96-3589-42f4-8e14-8d85207ae3d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"aba\": \"021000021\",\n\"type\": \"wire\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/validate_routing_number","description":"<p>Params:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndirection: \"in|out\",\ncountry: \"2-letter code\",\npaymentMethodType: \"bank|digitalWallet|card|emoney|cash\"\n}\n</code></pre><p>Notes:</p>\n<p>directUsage:\n    - boolean\n    Returns payment method types that can be used without having been previously stored.</p>\n<p>direction:\n    - string\n    Enum: \"in\" \"out\"\n    Query variable to filter payment method types by the direction of the funds (in/out).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Sample:\n\n[\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"balotoin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efectyin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntoredin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Puntored\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"superpagosin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Super Pagos\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"westernunionin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Western Union\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"baloto-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efecty-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntored-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Punto Red\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n}\n</code></pre><p>]</p>\n","urlObject":{"path":["payments","validate_routing_number"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e656c96-3589-42f4-8e14-8d85207ae3d4"},{"name":"Validate SWIFT Code","id":"ab7c5c74-7f5c-40b2-babb-a19dc2138612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"swift\": \"CHASUS33\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/validate_swift","description":"<p>Params:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndirection: \"in|out\",\ncountry: \"2-letter code\",\npaymentMethodType: \"bank|digitalWallet|card|emoney|cash\"\n}\n</code></pre><p>Notes:</p>\n<p>directUsage:\n    - boolean\n    Returns payment method types that can be used without having been previously stored.</p>\n<p>direction:\n    - string\n    Enum: \"in\" \"out\"\n    Query variable to filter payment method types by the direction of the funds (in/out).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Sample:\n\n[\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"balotoin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efectyin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntoredin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Puntored\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"superpagosin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Super Pagos\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"westernunionin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Western Union\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"baloto-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efecty-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntored-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Punto Red\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n}\n</code></pre><p>]</p>\n","urlObject":{"path":["payments","validate_swift"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab7c5c74-7f5c-40b2-babb-a19dc2138612"},{"name":"Validate IBAN Number","id":"fdeb7202-6ae3-421a-9be9-0ff97537d8b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"iban\": \"DE16200700000532013000\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/validate_iban","description":"<p>Params:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndirection: \"in|out\",\ncountry: \"2-letter code\",\npaymentMethodType: \"bank|digitalWallet|card|emoney|cash\"\n}\n</code></pre><p>Notes:</p>\n<p>directUsage:\n    - boolean\n    Returns payment method types that can be used without having been previously stored.</p>\n<p>direction:\n    - string\n    Enum: \"in\" \"out\"\n    Query variable to filter payment method types by the direction of the funds (in/out).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Sample:\n\n[\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"balotoin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efectyin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntoredin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Puntored\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"superpagosin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Super Pagos\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"westernunionin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Western Union\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"baloto-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efecty-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntored-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Punto Red\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n}\n</code></pre><p>]</p>\n","urlObject":{"path":["payments","validate_iban"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdeb7202-6ae3-421a-9be9-0ff97537d8b8"},{"name":"Search Bank SWIFT Code","id":"9f92a8db-c30e-4b22-adc0-1caaaec76089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"bank_name\": \"Signature bank\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/search_bank_swift","description":"<p>Params:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndirection: \"in|out\",\ncountry: \"2-letter code\",\npaymentMethodType: \"bank|digitalWallet|card|emoney|cash\"\n}\n</code></pre><p>Notes:</p>\n<p>directUsage:\n    - boolean\n    Returns payment method types that can be used without having been previously stored.</p>\n<p>direction:\n    - string\n    Enum: \"in\" \"out\"\n    Query variable to filter payment method types by the direction of the funds (in/out).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Response Sample:\n\n[\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"balotoin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efectyin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntoredin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Puntored\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"superpagosin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Super Pagos\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"westernunionin-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Western Union\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"baloto-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Baloto\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"efecty-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Efecty\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n},\n{\n    \"country\": \"CO\",\n    \"currency\": \"COP\",\n    \"directUsage\": true,\n    \"direction\": \"in\",\n    \"fields\": [\n        {\n            \"description\": \"Expiration days\",\n            \"fieldType\": \"input\",\n            \"isUserField\": false,\n            \"mandatory\": false,\n            \"name\": \"expiration_days\",\n            \"regex\": \".*\",\n            \"validOptions\": []\n        }\n    ],\n    \"imageURL\": null,\n    \"paymentMethodType\": \"puntored-co\",\n    \"paymentMethodTypeClass\": \"cash\",\n    \"paymentMethodTypeDescription\": \"Punto Red\",\n    \"paymentMethodTypePos\": [],\n    \"paymentMethodTypeStatus\": \"available\",\n    \"protected\": false,\n    \"storable\": false\n}\n</code></pre><p>]</p>\n","urlObject":{"path":["payments","search_bank_swift"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f92a8db-c30e-4b22-adc0-1caaaec76089"},{"name":"Time Periods","id":"29bd1ca9-8416-4a02-9ae0-df7ed3f3d5a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiurl}}/refdata/time_periods","urlObject":{"path":["refdata","time_periods"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"29bd1ca9-8416-4a02-9ae0-df7ed3f3d5a0"},{"name":"Country List","id":"3fcd2d59-c5fb-4cca-aec6-b3a4cbeb9217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/payments/payment_countries","description":"<ul>\n<li>Returns\n  - Human Readable Instructions</li>\n</ul>\n<p>Returns:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    {\n        \"transaction_id\": \"saksjsq-0io2wq-qdldksa\"\n    }\n</code></pre>","urlObject":{"path":["payments","payment_countries"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3fcd2d59-c5fb-4cca-aec6-b3a4cbeb9217"}],"id":"11d71941-4929-492c-9388-4f3fd94d4458","_postman_id":"11d71941-4929-492c-9388-4f3fd94d4458","description":""}],"id":"9a38388a-48a8-4287-99a1-2980ce118c3c","_postman_id":"9a38388a-48a8-4287-99a1-2980ce118c3c","description":""},{"name":"DEVELOPMENT ONLY","item":[{"name":"[DEV_ONLY] Delete ALL My Transactions","id":"317ac2b0-4a9a-4f94-ad06-9c18e4d45726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{apiurl}}/portfolio/delete_my_transactions","urlObject":{"path":["portfolio","delete_my_transactions"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"317ac2b0-4a9a-4f94-ad06-9c18e4d45726"},{"name":"[DEV_ONLY] Delete Portoflio Transactions","id":"45f58ffe-31b6-4235-8eb4-a1a39103b1fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/delete_portfolio_transactions","urlObject":{"path":["portfolio","delete_portfolio_transactions"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45f58ffe-31b6-4235-8eb4-a1a39103b1fe"},{"name":"[DEV_ONLY] Delete Portoflio Transactions Only Buys and Sells","id":"27387400-c8a7-4737-b80f-a78d96fb9416","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"portfolio_name\": \"My Portfolio\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/portfolio/delete_portfolio_transactions","urlObject":{"path":["portfolio","delete_portfolio_transactions"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27387400-c8a7-4737-b80f-a78d96fb9416"}],"id":"15bb8c06-6879-4c92-9793-0737e1285e21","_postman_id":"15bb8c06-6879-4c92-9793-0737e1285e21","description":""},{"name":"[LOCKED] CARDS","item":[],"id":"bcd377a8-2a74-4feb-94ff-b358e78edccf","_postman_id":"bcd377a8-2a74-4feb-94ff-b358e78edccf","description":""},{"name":"[LOCKED] POS SYSTEM","item":[],"id":"92264f65-f199-4bf3-922e-a21370c3c518","_postman_id":"92264f65-f199-4bf3-922e-a21370c3c518","description":""},{"name":"[LOCKED] AUTOMATE","item":[{"name":"SPLITTER","item":[],"id":"47524465-fa56-4534-a907-ee17cb6f1cc3","_postman_id":"47524465-fa56-4534-a907-ee17cb6f1cc3","description":""},{"name":"ROUTER","item":[],"id":"27ca306a-e94e-4303-aa75-6e49f7eeb8b5","_postman_id":"27ca306a-e94e-4303-aa75-6e49f7eeb8b5","description":""},{"name":"CONSOLIDATOR","item":[],"id":"8bf2ed2a-0796-4227-9f10-04ed8c23e127","_postman_id":"8bf2ed2a-0796-4227-9f10-04ed8c23e127","description":""},{"name":"CONVERTER","item":[],"id":"2e5926f9-120b-4a10-9199-6d53f22362cd","_postman_id":"2e5926f9-120b-4a10-9199-6d53f22362cd","description":""},{"name":"FLOWS","item":[],"id":"36e3725b-2830-43a5-b0fa-572132b33cf2","_postman_id":"36e3725b-2830-43a5-b0fa-572132b33cf2","description":""}],"id":"57c03188-3d2f-46bf-8a00-cc22162e71f0","_postman_id":"57c03188-3d2f-46bf-8a00-cc22162e71f0","description":""},{"name":"[LOCKED] AI","item":[],"id":"faab3487-ddd4-496c-8263-b53b1ed4fa3d","_postman_id":"faab3487-ddd4-496c-8263-b53b1ed4fa3d","description":""},{"name":"[LOCKED] COMPLIANCE","item":[{"name":"KYC","item":[],"id":"fc494727-cddd-471a-b82a-de136138960b","_postman_id":"fc494727-cddd-471a-b82a-de136138960b","description":""},{"name":"KYB","item":[{"name":"[LOCKED] Send KYB Information","id":"0d72d871-2272-45d0-8363-cac7e850b5ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"0d72d871-2272-45d0-8363-cac7e850b5ce"},{"name":"[LOCKED] Update KYB Information","id":"2fcd1bfb-b0c8-4d95-b5e4-548cc38cbec2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"2fcd1bfb-b0c8-4d95-b5e4-548cc38cbec2"},{"name":"[LOCKED] Check KYB Status","id":"eef8185c-8d0c-490e-8ce0-4935101c1dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"eef8185c-8d0c-490e-8ce0-4935101c1dcd"}],"id":"402fde11-99eb-48cd-ab34-2d7350ff948b","_postman_id":"402fde11-99eb-48cd-ab34-2d7350ff948b","description":""},{"name":"ID Verification Job Sent Copy","id":"6461e3ce-2dee-45e3-8d9a-1003248cef25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jobid\": \"gqsGumCvD\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiurl}}/client/vouched_job_submitted","urlObject":{"path":["client","vouched_job_submitted"],"host":["{{apiurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6461e3ce-2dee-45e3-8d9a-1003248cef25"}],"id":"528ae907-000b-45a3-9935-4da84de8b57d","_postman_id":"528ae907-000b-45a3-9935-4da84de8b57d","description":""}]}