{"info":{"_postman_id":"32192a39-f2d7-4457-b984-09167d54c012","name":"Crypto Processing Platform API","description":"<html><head></head><body><p>This is a high-level implementation for <a href=\"https://api.cryptoprocessing.io\">https://api.cryptoprocessing.io</a></p>\n<p>CryptoProcessing is a platform for blockchain projects and businesses, that allows building blockchain applications in a short period and save time and money. It offers a standardized set of methods to work with acquirers, processing companies, liquidity providers, and different exchanges using given API for work with crypto and fiat currencies.</p>\n<p>For more information about CryptoProcessing, visit <a href=\"https://cryptoprocessing.io\">https://cryptoprocessing.io</a> or join us in <a href=\"https://t.me/CryptoProcessing\">https://t.me/CryptoProcessing</a></p>\n<p>Created by the CryptoProcessing company.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1487364","collectionId":"32192a39-f2d7-4457-b984-09167d54c012","publishedId":"7LoehjA","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-09-06T08:53:47.000Z"},"item":[{"name":"Payments","item":[{"name":"{{domain}}/api/v1/payments","id":"03bff5b2-3afe-9b77-22d2-059db2af8f45","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"KEY","description":"<p>Your Auth Key</p>\n"},{"key":"X-Email","value":"EMAIL","description":"<p>Optional email of the user you want to process a payment \nfor.</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"email@user\",\n\t\"amount\": 0.1,\n\t\"currency\": \"eth\",\n\t\"address\": \"0x843...\"\n}"},"url":"{{domain}}/api/v1/payments","description":"<p>\"email\": Optional Email address. If does not exist, X-Email header should be set.</p>\n<p>\"amount\": float, amount of crypto you want to buy</p>\n<p>\"currency\": eth or btc (lowercase)</p>\n<p>\"address\": Optional eth or btc address to receive crypto. If X-Email header set, the user's addresses is used.</p>\n","urlObject":{"path":["api","v1","payments"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"96fb01dd-b9fc-4083-2452-ee0d8a823bda","name":"{{domain}}/api/v1/payments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"KEY","description":"Your Auth Key"},{"key":"X-Email","value":"EMAIL","description":"Optional email of the user you want to process a payment \nfor."}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"email@user\",\n\t\"amount\": 0.1,\n\t\"currency\": \"eth\",\n\t\"address\": \"0x843...\"\n}"},"url":"{{domain}}/api/v1/payments"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"19","body":"{\n\t\"data\": {\n\t\t\"redirect_url\": \"https://{CustomerID}.cryptoprocessing.io/api/v1/payments/{OrderID}.html\"\n\t}\n}"}],"_postman_id":"03bff5b2-3afe-9b77-22d2-059db2af8f45"}],"id":"3c03052c-1634-c493-64fa-c10978bcb46f","description":"<p>A payments endpoints for credit/debit cards acquiring</p>\n","_postman_id":"3c03052c-1634-c493-64fa-c10978bcb46f"},{"name":"CRUD with User model","item":[{"name":"Create user","id":"6a439362-5b90-43ab-b02c-353a968fd1e3","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users","description":"<p>Create user. Requires email, password, and password_confirmation params.\nUser is an <em>abstract</em> model for just an identification way for wallets.\nFields password and password_confirmation may be used if you want to use our wallet solution for your users (additionally may be requested via email <a href=\"mailto:wallet@oom.ag\">wallet@oom.ag</a>).</p>\n","urlObject":{"path":["api","v1","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1a9b9c5a-6c78-45b5-b283-ed193b6a00fb","name":"Create user (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"ff45c415-c940-4366-aca3-a3d2fb4b8cb9","name":"Create user (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"data\": {\n    \"addresses\": {\n      \"btc\": \"{{btc_address}}\",\n      \"eth\": \"{{eth_address}}\",\n      \"abx\": \"{{abx_address}}\"\n    },\n    \"name\": \"{{user_name}}\",\n    \"email\": \"{{user_email}}\"\n  },\n  \"error\": {\n    \"status\": 0\n  }\n}"}],"_postman_id":"6a439362-5b90-43ab-b02c-353a968fd1e3"},{"name":"Update account information","id":"5492f7c1-d8a4-4de2-9aa9-d2f7d8733fe5","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"{{user_email}}\",\n  \"current_password\": \"{{user_current_password}}\"\n}\n\n"},"url":"{{domain}}/api/v1/users/","description":"<p>Update user account information.</p>\n","urlObject":{"path":["api","v1","users",""],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1ec96bf5-e337-4fc5-84e1-79aff560f466","name":"Update account information (with errors)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"{{user_email}}\",\n  \"current_password\": \"{{user_current_password}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}\n\n"},"url":"{{domain}}/api/v1/users/"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"649f2e01-e45c-4f42-8933-fca76b1d28b2","name":"Update account information (without errors)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"{{user_email}}\",\n  \"current_password\": \"{{user_current_password}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}\n\n"},"url":"{{domain}}/api/v1/users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"data\": {\n    \"addresses\": {\n      \"btc\": \"{{btc_address}}\",\n      \"eth\": \"{{eth_address}}\",\n      \"abx\": \"{{abx_address}}\"\n    },\n    \"name\": \"{{user_name}}\",\n    \"email\": \"{{user_email}}\"\n  },\n  \"error\": {\n    \"status\": 0\n  }\n}"}],"_postman_id":"5492f7c1-d8a4-4de2-9aa9-d2f7d8733fe5"}],"id":"e498c15e-6386-4011-844c-9a63e6006e9f","_postman_id":"e498c15e-6386-4011-844c-9a63e6006e9f","description":""},{"name":"Get user information","item":[{"name":"Get full user info","id":"a2080a79-c1bd-48ab-a902-bf8858e18c79","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"url":"http://{{domain}}/api/v1/users/info","description":"<p>Get inforamtion about the user.</p>\n","urlObject":{"protocol":"http","path":["api","v1","users","info"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"4c71042d-00ba-4cde-9d0e-6ae72dd57630","name":"Get full user info (with errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"access-token","value":"{{access_token}}"},{"key":"client","value":"{{client}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"fb2166be-7d97-49fa-9606-d0988891909d","name":"Get full user info (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"addresses\": {\n            \"btc\": \"{{btc_address}}\",\n            \"eth\": \"{{eth_address}}\",\n            \"abx\": \"{{abx_address}}\"\n        },\n        \"name\": \"{{user_name}}\",\n        \"email\": \"{{user_email}}\"\n    }\n}"}],"_postman_id":"a2080a79-c1bd-48ab-a902-bf8858e18c79"},{"name":"Get user balances","id":"dac94ecf-6210-4d70-812d-af9cfaf27402","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/balances","description":"<p>Get input balances for user in ETH, BTC, ARX.</p>\n","urlObject":{"path":["api","v1","users","balances"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"c752b3d4-7eb1-ff8a-e6ce-14cfd8f54ee9","name":"Get user balances (with errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/balances"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"d8fbad8b-62d1-9602-04e6-33eba4dbe740","name":"Get user balances (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"{{user_name}}\",\n  \"email\": \"{{user_email}}\",\n  \"password\": \"{{user_password}}\",\n  \"password_confirmation\": \"{{user_password_confirmation}}\"\n}"},"url":"{{domain}}/api/v1/users/balances"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"balances\": {\n            \"btc\": \"{{btc_balance}}\",\n            \"eth\": \"{{eth_balance}}\",\n            \"abx\": \"{{abx_balance}}\"\n        },\n        \"remaining_balance\": {\n            \"btc\": \"{{remaining_btc_balance}}\",\n            \"eth\": \"{{remaining_eth_balance}}\",\n            \"abx\": \"{{remaining_abx_balance}}\"\n        }\n    }\n}"}],"_postman_id":"dac94ecf-6210-4d70-812d-af9cfaf27402"}],"id":"c48f1ec4-a860-44bc-b026-62e01a239068","_postman_id":"c48f1ec4-a860-44bc-b026-62e01a239068","description":""},{"name":"Send crypto","item":[{"name":"Send ETH from user wallet","id":"4256846a-f7a1-4a45-b0f2-d8e163c5b520","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\",\n  \"gas_limit\": \"{{gas_limit}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eth","description":"<p>Send ETH from user wallet.</p>\n","urlObject":{"path":["api","v1","wallets","eth"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"1d480630-300d-4b2a-b790-054981ae2910","name":"Send ETH from user wallet (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\",\n  \"gas_limit\": \"{{gas_limit}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eth"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"22599b57-4e66-41a2-b287-6b19980f6d53","name":"Send ETH from user wallet (Insufficient funds)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"X-Email","value":"{{email}}","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\",\n  \"gas_limit\": \"{{gas_limit}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eth"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"53","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"X-Request-Id","value":"762c0de8-3eb2-4a43-a08b-ff04a2bca3d6","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"3.776592","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"error\":{\"status\":3,\"message\":\"Insufficient funds\"}}"},{"id":"f228992f-1d53-493d-a85f-64a8d69fd24a","name":"Send ETH from user wallet (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\",\n  \"gas_limit\": \"{{gas_limit}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"txid\": \"{{txid}}\"\n    }\n}"}],"_postman_id":"4256846a-f7a1-4a45-b0f2-d8e163c5b520"},{"name":"Send BTC from user wallet","id":"118a249d-7dde-49e5-8a12-3018f24eede9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": {{amount}},\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/btc","description":"<p>Send BTC from user wallet.</p>\n","urlObject":{"path":["api","v1","wallets","btc"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"040bac09-65b5-4c44-83ff-5829ca9960e3","name":"Send BTC from user wallet (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/btc"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"10cef6ae-96ef-4b71-8138-c4c222bd91d7","name":"Send BTC from user wallet (Insufficient funds)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"X-Email","value":"{{email}}","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/btc"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"52","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"X-Request-Id","value":"ccca8d3b-b411-4cb4-ad66-eb5f8b764b2a","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"16.506608","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"status\": 3,\n        \"message\": \"Insufficient funds\"\n    }\n}"},{"id":"893f0239-9718-4244-bce1-39795dd46901","name":"Send BTC from user wallet (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/btc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"txid\": \"{{txid}}\"\n    }\n}"}],"_postman_id":"118a249d-7dde-49e5-8a12-3018f24eede9"},{"name":"Send ABX from user wallet","id":"efc73258-e85b-42ed-94f4-44221f24386d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/abx","description":"<p>Send ABX from user wallet.</p>\n","urlObject":{"path":["api","v1","wallets","abx"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"14f0be91-ea97-4d8c-8aa0-8b0aa9cdaa07","name":"Send ABX from user wallet (Insufficient funds)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"X-Email","value":"{{email}}","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/abx"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"53","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"X-Request-Id","value":"3331be98-b095-4404-8fc2-fd99c95cefb3","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.870482","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"error\":{\"status\":3,\"message\":\"Insufficient funds\"}}"},{"id":"3c597168-2c41-4081-964b-93acfa987b29","name":"Send ABX from user wallet (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/btc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"txid\": \"{{txid}}\"\n    }\n}"},{"id":"9ec54b60-b2d1-4f87-ad6b-dce4c294cf74","name":"Send ABX from user wallet (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/abx"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"}],"_postman_id":"efc73258-e85b-42ed-94f4-44221f24386d"},{"name":"Send EOS from user wallet","id":"f8108a3a-a3da-4d25-aec0-16262b0c4ca3","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eos","description":"<p>Send EOS from user wallet.</p>\n","urlObject":{"path":["api","v1","wallets","eos"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"5abbbff4-6837-4da4-b603-e810a679c15c","name":"Send EOS from user wallet (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eos"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"71a67878-2027-4fc8-be11-b04fed1a4d20","name":"Send EOS from user wallet (Insufficient funds)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"X-Email","value":"{{email}}","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"{{amount}}\",\n  \"address\": \"{{destination_address}}\"\n}"},"url":"{{domain}}/api/v1/wallets/eos"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"53","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"X-Request-Id","value":"3331be98-b095-4404-8fc2-fd99c95cefb3","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.870482","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"error\":{\"status\":3,\"message\":\"Insufficient funds\"}}"}],"_postman_id":"f8108a3a-a3da-4d25-aec0-16262b0c4ca3"}],"id":"3026f25c-aa43-49bb-bedc-da9850508cf3","_postman_id":"3026f25c-aa43-49bb-bedc-da9850508cf3","description":""},{"name":"Webhooks","item":[{"name":"Changed ethereum balance","id":"bd6ac414-0b45-4afa-a816-e9581cdea16f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": {{prev_balance}},\n  \"new_balance\": {{new_balance}}\n}"},"url":"{{arbidex_domain}}/api/wallets/eth","description":"<p>ETH balance change notification.</p>\n","urlObject":{"path":["api","wallets","eth"],"host":["{{arbidex_domain}}"],"query":[],"variable":[]}},"response":[{"id":"1ef00c38-2c1d-46ca-8c56-faf6f83ccfee","name":"Changed ethereum balance (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{arbidex_domain}}/api/wallets/eth"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"38cd2eb6-a5f8-4c12-8228-13f2db1975d3","name":"Changed ethereum balance (without erros)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{arbidex_domain}}/api/wallets/eth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"error\": {\n    \"status\": 0\n  }\n}"}],"_postman_id":"bd6ac414-0b45-4afa-a816-e9581cdea16f"},{"name":"Changed bitcoin balance","id":"d27d1cd7-80dd-4fb1-9f2d-3fda7de207f1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": {{prev_balance}},\n  \"new_balance\": {{new_balance}}\n}"},"url":"{{arbidex_domain}}/api/wallets/btc","description":"<p>BTC balance change notification.</p>\n","urlObject":{"path":["api","wallets","btc"],"host":["{{arbidex_domain}}"],"query":[],"variable":[]}},"response":[{"id":"3ca21721-3db4-4acf-b33b-e4acfaa85cd3","name":"Changed bitcoin balance (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{arbidex_domain}}/api/wallets/btc"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"8dfd89c6-c9d9-4ffc-87ba-f269640588c1","name":"Changed bitcoin balance (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{abx_domain}}/api/v1/users/wallets/btc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 0\n    }\n}"}],"_postman_id":"d27d1cd7-80dd-4fb1-9f2d-3fda7de207f1"},{"name":"Changed bitcoin balance - test","id":"867a824b-10f4-4a2f-b7a9-feebd04789e7","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": {{prev_balance}},\n  \"new_balance\": {{new_balance}}\n}"},"url":"{{arbidex_domain}}/api/wallets/btc","description":"<p>BTC balance change notification.</p>\n","urlObject":{"path":["api","wallets","btc"],"host":["{{arbidex_domain}}"],"query":[],"variable":[]}},"response":[{"id":"8ba393f7-3fc2-46fb-8b38-f54b3a22e641","name":"Changed bitcoin balance (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{arbidex_domain}}/api/wallets/btc"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"fbad7368-a548-4b7b-8df5-a4a8441e75c1","name":"Changed bitcoin balance (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{abx_domain}}/api/v1/users/wallets/btc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"status\": 0\n    }\n}"}],"_postman_id":"867a824b-10f4-4a2f-b7a9-feebd04789e7"},{"name":"Changed abx balance","id":"a331797c-de5e-4a4f-a5f7-73ec88505121","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": {{prev_balance}},\n  \"new_balance\": {{new_balance}}\n}"},"url":"{{arbidex_domain}}/api/wallets/abx","description":"<p>ABX balance change notification.</p>\n","urlObject":{"path":["api","wallets","abx"],"host":["{{arbidex_domain}}"],"query":[],"variable":[]}},"response":[{"id":"aea53cad-d5b3-460e-a845-2efb3b76c21a","name":"Changed abx balance (without errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{arbidex_domain}}/api/wallets/abx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"error\": {\n    \"status\": 0\n  }\n}"},{"id":"c14cc8d4-9850-4e20-a11a-f0043224256f","name":"Changed abx balance (with errors)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{invalid_authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"raw","raw":"{\n  \"prev_balance\": \"{{prev_balance}}\",\n  \"new_balance\": \"{{new_balance}}\"\n}"},"url":"{{abx_domain}}/api/v1/users/wallets/abx"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"}],"_postman_id":"a331797c-de5e-4a4f-a5f7-73ec88505121"}],"id":"7f0085dd-dc40-477a-9069-b4378449df2e","_postman_id":"7f0085dd-dc40-477a-9069-b4378449df2e","description":""},{"name":"Transactions","item":[{"name":"Get Ethereum transactions ","id":"f557bbe2-4068-29ed-8c23-e6b4b0d74655","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eth ","urlObject":{"path":["api","v1","transactions","eth "],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"168c966a-f536-07a6-9b15-ccf7fdfafe40","name":"Get Ethereum transactions (with errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"X-Authorization","value":"{{invalid_authorization_token}}","warning":""},{"key":"X-Email","value":"{{email}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eth "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"395","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"7cf6ed64e611a964d54a40c466b0ebab\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"891a2300-ad77-401a-8d91-c73b81167f6c","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.054852","description":""}],"cookie":[],"responseTime":"120","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"6e0deb65-0257-0def-4ff5-77d36a09d9ba","name":"Get Ethereum transactions (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eth "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"188","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c8836c8b718cb63d751ebffee7d9c9b4\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"d6662129-6c23-4ddb-a5d2-35e1946db6e1","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.009163","description":""}],"cookie":[],"responseTime":"43","body":"{\n    \"data\": {\n        \"in\": [\n            {\n                \"amount\": \"0.01\",\n                \"txid\": \"0x61390c478802724cb4bae7ed9a4b8c9859c0eba65c5a12508a24e85314e27414\",\n                \"from\": [\n                    \"0x662c90ce54b046b2ffbdc1634b8753208f409d2f\"\n                ],\n                \"to\": [\n                    \"0xb50a8c0df5b9794f1ef123944ac056a480fbdc14\"\n                ],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-20T23:15:23.000Z\"\n            }\n        ],\n        \"out\": [\n            {\n                \"amount\": \"0.005\",\n                \"txid\": \"0x90c10f12e0300faa800c83cf6d3483e1b64f4af4df7b0f7b26832f200ead93d1\",\n                \"from\": [\n                    \"0x662c90ce54b046b2ffbdc1634b8753208f409d2f\"\n                ],\n                \"to\": [\"0x662c90ce54b046b2ffbdc1634b8753208f409d2f\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-21T13:54:18.873Z\"\n            },\n            {\n                \"amount\": \"0.005\",\n                \"txid\": \"0x23403602843d78ec1b0db983f02ae256c20def21e32a8e69f9238144e25e124b\",\n                \"from\": [\n                    \"0x662c90ce54b046b2ffbdc1634b8753208f409d2f\"\n                ],\n                \"to\": [\"0x662c90ce54b046b2ffbdc1634b8753208f409d2f\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-21T13:57:10.970Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f557bbe2-4068-29ed-8c23-e6b4b0d74655"},{"name":"Get Bitcoin transactions","id":"5d02bf7b-7125-6baa-79d6-5d67d6651fe4","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/btc ","urlObject":{"path":["api","v1","transactions","btc "],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"375719d5-e2c1-dfcb-1f55-e10729f55da3","name":"Get Bitcoin transactions (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eth "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"188","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c8836c8b718cb63d751ebffee7d9c9b4\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"d6662129-6c23-4ddb-a5d2-35e1946db6e1","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.009163","description":""}],"cookie":[],"responseTime":"43","body":"{\n    \"data\": {\n        \"in\": [\n            {\n                \"amount\": \"0.1\",\n                \"txid\": \"341e2ac613e29162c08c0551ca5ced53684b2981eab1a85bc84632c8c4656598\",\n                \"from\": [\n                    \"n2sDdbwA4Yo8Fr9k8ZvbMtuhv1X86W3k3F\",\n                    \"mzpzzMj9NAeTjGWMNQt4YTiQ1ot9VBCHYw\"\n                ],\n                \"to\": [\"18AzNPmc2BLje9L178yC8H5j624EvgyeWN\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-23T16:53:28.000Z\"\n            },\n            {\n                \"amount\": \"0.01\",\n                \"txid\": \"0e038af4aaeefa54de1b073f1fe47890dc7d3dc6b6aa337d506f76ef87392732\",\n                \"from\": [\n                    \"n2sDdbwA4Yo8Fr9k8ZvbMtuhv1X86W3k3F\",\n                    \"mzpzzMj9NAeTjGWMNQt4YTiQ1ot9VBCHYw\"\n                ],\n                \"to\": [\"18AzNPmc2BLje9L178yC8H5j624EvgyeWN\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-23T15:37:56.000Z\"\n            },\n            {\n                \"amount\": \"0.01\",\n                \"txid\": \"b38a96894b52213d5cb8bb25d736494ce23851f0c8a11ac010552e13c1ce21f5\",\n                \"from\": [\n                    \"n2sDdbwA4Yo8Fr9k8ZvbMtuhv1X86W3k3F\",\n                    \"mzpzzMj9NAeTjGWMNQt4YTiQ1ot9VBCHYw\"\n                ],\n                \"to\": [\"18AzNPmc2BLje9L178yC8H5j624EvgyeWN\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-22T10:21:47.000Z\"\n            }\n        ],\n        \"out\": [\n            {\n                \"amount\": \"0.00426\",\n                \"txid\": \"6d4008ed83781c5bed9504490c1820ba07905c894495ae0c0cdffa782b5df97b\",\n                \"from\": [\n                    \"n2sDdbwA4Yo8Fr9k8ZvbMtuhv1X86W3k3F\",\n                    \"mzpzzMj9NAeTjGWMNQt4YTiQ1ot9VBCHYw\"\n                ],\n               \"to\": [\"18AzNPmc2BLje9L178yC8H5j624EvgyeWN\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-23T15:33:20.728Z\"\n            },\n            {\n                \"amount\": \"0.00726\",\n                \"txid\": \"7e90c44dfa2481bf5913ca451aa715e2d4d36d4e73eeee03790aef21010000d6\",\n                \"from\": [\n                    \"n2sDdbwA4Yo8Fr9k8ZvbMtuhv1X86W3k3F\",\n                    \"mzpzzMj9NAeTjGWMNQt4YTiQ1ot9VBCHYw\"\n                ],\n                \"to\": [\"18AzNPmc2BLje9L178yC8H5j624EvgyeWN\"],\n                \"status\": \"confirmed\",\n                \"created_at\": \"2017-12-23T16:38:37.310Z\"\n            }\n        ]\n    }\n}"},{"id":"b939537e-8a60-adcf-62dd-1c3d32cf1a8e","name":"Get Bitcoin transactions (with errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/btc "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"900","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"date","key":"date","value":"Wed, 17 Jan 2018 17:38:58 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"12902b87a2512b645a48d2014584692c\"","description":""},{"name":"server","key":"server","value":"Cowboy","description":""},{"name":"strict-transport-security","key":"strict-transport-security","value":"max-age=15552000; includeSubDomains","description":""},{"name":"via","key":"via","value":"1.1 vegur","description":""},{"name":"x-request-id","key":"x-request-id","value":"5914c78b-99e3-42ca-9a6d-a219ed9daef2","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.011239","description":""}],"cookie":[],"responseTime":"302","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"}],"_postman_id":"5d02bf7b-7125-6baa-79d6-5d67d6651fe4"},{"name":"Get ABX transactions","id":"74d0b5c3-97fe-02b2-28c6-7b11a6d0f982","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/abx ","urlObject":{"path":["api","v1","transactions","abx "],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b08c9302-8f80-ea12-5da9-19c46c0fe6a6","name":"Get ABX transactions (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eth "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"188","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c8836c8b718cb63d751ebffee7d9c9b4\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"d6662129-6c23-4ddb-a5d2-35e1946db6e1","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.009163","description":""}],"cookie":[],"responseTime":"43","body":"{\n    \"data\": {\n        \"in\": [\n            {\n                \"amount\": \"6.09286488\",\n                \"txid\": \"0x1e2093915ce9e8aad79b008c1121b25e052ac7976cba5657cc9882714e6d80b0\",\n                \"to\": \"0x00abaf6e8b9e7b82cd3ac3d6d9617c65eb655926\",\n                \"status\": \"confirmed\",\n                \"execution\": null,\n                \"created_at\": \"2018-03-20T10:46:09.000Z\"\n            },\n            {\n                \"amount\": \"46.09286488\",\n                \"txid\": \"0x2ebf95c2d49d3c18ada2d1fd607414d71ad2c8871aeeba19226da6abc232da69\",\n                \"to\": \"0x00abaf6e8b9e7b82cd3ac3d6d9617c65eb655926\",\n                \"status\": \"confirmed\",\n                \"execution\": null,\n                \"created_at\": \"2018-03-20T10:48:24.000Z\"\n            }\n        ],\n        \"out\": [\n            {\n                \"amount\": \"5.0\",\n                \"txid\": \"0xe28735c797e5e91a7f45f6214b6d4408e154b6a6f0c3ff5373eeacd480b54cb6\",\n                \"to\": \"0xd08c33b238983441406e0563559658aba4557269\",\n                \"status\": \"confirmed\",\n                \"execution\": \"confirmed\",\n                \"created_at\": \"2018-03-20T11:12:26.141Z\"\n            },\n            {\n                \"amount\": \"5.0\",\n                \"txid\": \"0xcfc5811e9e811e0bbff105ddd2bebf65ddf3825909ca1c3b66882373283e6083\",\n                \"to\": \"0xd08c33b238983441406e0563559658aba4557269\",\n                \"status\": \"confirmed\",\n                \"execution\": \"confirmed\",\n                \"created_at\": \"2018-03-20T11:11:25.178Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"74d0b5c3-97fe-02b2-28c6-7b11a6d0f982"},{"name":"Get EOS transactions","id":"c629be6d-bc6b-4725-8119-562c294094be","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eos ","urlObject":{"path":["api","v1","transactions","eos "],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b5bec274-7dcf-4c4b-8ff9-3f2ad62b1f66","name":"Get EOS transactions (without errors)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"X-Email","value":"{{email}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/transactions/eos "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"188","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c8836c8b718cb63d751ebffee7d9c9b4\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"d6662129-6c23-4ddb-a5d2-35e1946db6e1","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.009163","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"in\": [\n            {\n                \"amount\": \"6.09286488\",\n                \"txid\": \"0x1e2093915ce9e8aad79b008c1121b25e052ac7976cba5657cc9882714e6d80b0\",\n                \"to\": \"0x00abaf6e8b9e7b82cd3ac3d6d9617c65eb655926\",\n                \"status\": \"confirmed\",\n                \"execution\": null,\n                \"created_at\": \"2018-03-20T10:46:09.000Z\"\n            },\n            {\n                \"amount\": \"46.09286488\",\n                \"txid\": \"0x2ebf95c2d49d3c18ada2d1fd607414d71ad2c8871aeeba19226da6abc232da69\",\n                \"to\": \"0x00abaf6e8b9e7b82cd3ac3d6d9617c65eb655926\",\n                \"status\": \"confirmed\",\n                \"execution\": null,\n                \"created_at\": \"2018-03-20T10:48:24.000Z\"\n            }\n        ],\n        \"out\": [\n            {\n                \"amount\": \"5.0\",\n                \"txid\": \"0xe28735c797e5e91a7f45f6214b6d4408e154b6a6f0c3ff5373eeacd480b54cb6\",\n                \"to\": \"0xd08c33b238983441406e0563559658aba4557269\",\n                \"status\": \"confirmed\",\n                \"execution\": \"confirmed\",\n                \"created_at\": \"2018-03-20T11:12:26.141Z\"\n            },\n            {\n                \"amount\": \"5.0\",\n                \"txid\": \"0xcfc5811e9e811e0bbff105ddd2bebf65ddf3825909ca1c3b66882373283e6083\",\n                \"to\": \"0xd08c33b238983441406e0563559658aba4557269\",\n                \"status\": \"confirmed\",\n                \"execution\": \"confirmed\",\n                \"created_at\": \"2018-03-20T11:11:25.178Z\"\n            }\n        ]\n    }\n}"}],"_postman_id":"c629be6d-bc6b-4725-8119-562c294094be"}],"id":"c30dbe63-fe72-1e20-85fb-8d1eb269e682","_postman_id":"c30dbe63-fe72-1e20-85fb-8d1eb269e682","description":""},{"name":"Common","item":[{"name":"Get Fee Value","id":"53581558-6ccb-0777-1b21-41d5a1345fb7","request":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee","description":"<p>Get actual outgoing tx fee costs for all the currencies</p>\n","urlObject":{"path":["api","v1","common","fee"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b9113587-0a56-52ff-83aa-672d720ca40b","name":"Get Fee Value","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"xxxxxx"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"data\":\n    {\n      \"btc\": 0.001,\n      \"eth\": 0.001\n    }\n}"},{"id":"d0960857-5e14-c733-f6f2-dba3771d004c","name":"Get Fee Value (with errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{invalid_authorization_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"}],"_postman_id":"53581558-6ccb-0777-1b21-41d5a1345fb7"},{"name":"Get withdrawing ETH","id":"a0c69771-7a61-456f-b94b-e989fc8515d1","request":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/withdrawing_eth","description":"<p>Get actual outgoing tx fee costs for all the currencies</p>\n","urlObject":{"path":["api","v1","common","withdrawing_eth"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7a8ca373-c5dd-440d-a220-d96a394cadd0","name":"Get Fee Value (with errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{invalid_authorization_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"9b24d21a-774e-4782-97c8-1394ebd8d2c4","name":"Get Fee Value","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"xxxxxx"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/withdrawing_eth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"eth\": 0.00206\n    }\n}"}],"_postman_id":"a0c69771-7a61-456f-b94b-e989fc8515d1"},{"name":"Get stat","id":"c5da01c3-cca0-a550-d637-3abb72360197","request":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/stat","description":"<p>Get actual outgoing tx fee costs for all the currencies</p>\n","urlObject":{"path":["api","v1","common","stat"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"81b5794c-851e-b605-3bf0-495fe116bc7f","name":"Get Fee Value (with errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{invalid_authorization_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"d72370be-5756-b80e-c8a9-a0cd42187444","name":"Get Fee Value","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"xxxxxx"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/fee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n  \"data\":\n    {\n      \"btc\": 0.001,\n      \"eth\": 0.001\n    }\n}"}],"_postman_id":"c5da01c3-cca0-a550-d637-3abb72360197"},{"name":"Get contract price in ETH","id":"7caa406f-c073-2267-8c4e-ac26874d68c5","request":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/contract_eth_price","urlObject":{"path":["api","v1","common","contract_eth_price"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"61cec241-b05b-6f0b-d7ec-671ec838def6","name":"Get contract price in ETH","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/contract_eth_price"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"35","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"f51ac902dd2e61b3d6634ae69500aa49\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"14d570d0-37e1-42c7-a1f3-0a34400f1f6b","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.271103","description":""}],"cookie":[],"responseTime":"310","body":"{\"tokenPrice\":0.001025451711478906}"},{"id":"e5aa5402-06ce-8a57-99e5-6c46fa521186","name":"Get contract price in ETH (with errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{invalid_authorization_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/contract_eth_price"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"35","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"f51ac902dd2e61b3d6634ae69500aa49\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"14d570d0-37e1-42c7-a1f3-0a34400f1f6b","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.271103","description":""}],"cookie":[],"responseTime":"310","body":"{\n  \"error\": {\n    \"status\": 1,\n    \"message\": \"401 Unauthorized\"\n  }\n}"}],"_postman_id":"7caa406f-c073-2267-8c4e-ac26874d68c5"},{"name":"Get total usd input","id":"825dc6f7-0f3a-cd41-1f03-46984c9b8c46","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/total_usd_input","urlObject":{"path":["api","v1","common","total_usd_input"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"20430053-0590-7d42-bc28-213963178aac","name":"Get total usd input (with errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/total_usd_input"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"25","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c9f95ac607beb6edc09af9b72f4961ce\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"57c9c3ed-a77a-42b9-8921-f1d98d6423b8","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.005191","description":""}],"cookie":[],"responseTime":"49","body":"{\n    \"error\": {\n        \"status\": 1,\n        \"message\": \"401 Unauthorized\"\n    }\n}"},{"id":"affd6d5b-dabd-3444-95af-24809c6eabf9","name":"Get total usd input (without errors)","originalRequest":{"method":"GET","header":[{"key":"X-Authorization","value":"{{authorization_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{domain}}/api/v1/common/total_usd_input"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"max-age=0, private, must-revalidate","description":""},{"name":"content-length","key":"content-length","value":"25","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"etag","key":"etag","value":"W/\"c9f95ac607beb6edc09af9b72f4961ce\"","description":""},{"name":"x-request-id","key":"x-request-id","value":"57c9c3ed-a77a-42b9-8921-f1d98d6423b8","description":""},{"name":"x-runtime","key":"x-runtime","value":"0.005191","description":""}],"cookie":[],"responseTime":"49","body":"{\"data\":{\"usd\":6812.022}}"}],"_postman_id":"825dc6f7-0f3a-cd41-1f03-46984c9b8c46"}],"id":"c3a9df70-4543-3e0c-df2c-0b4ef36b6e26","_postman_id":"c3a9df70-4543-3e0c-df2c-0b4ef36b6e26","description":""},{"name":"Verification","item":[{"name":"Verification of the ETH wallet address","id":"e04455a2-9ce6-4993-8c39-ab2534633f8f","request":{"method":"POST","header":[{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"{{address}}\"\n}"},"url":"{{domain}}/api/v1/verification/eth","urlObject":{"path":["api","v1","verification","eth"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"26123c8e-be53-4cfd-8710-86c49f9fec4f","name":"Verification of the ETH wallet address","originalRequest":{"method":"POST","header":[{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"address\": \"0xCb465E880921FB615AF144eE00f16ba2a56E9415\"\n}"},"url":"{{domain}}/api/v1/verification/eth"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"24","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"ETag","value":"W/\"74dded3a6d244953f63fe17a47100ca1\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Request-Id","value":"28c2a21d-2be1-4f10-b848-175bc1ca3160","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.013945","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"status\":true}}"}],"_postman_id":"e04455a2-9ce6-4993-8c39-ab2534633f8f"},{"name":"Verification of the BTC wallet address","id":"c1b188e1-b9f1-4855-a728-df8cd204f601","request":{"method":"POST","header":[{"key":"X-Authorization","value":"{{authorization_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"address\": \"{{address}}\"\n}"},"url":"{{domain}}/api/v1/verification/btc","urlObject":{"path":["api","v1","verification","btc"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"bc6ca980-d89f-463c-8f17-b52e6e927f10","name":"Verification of the BTC wallet address","originalRequest":{"method":"POST","header":[{"key":"X-Authorization","value":"{{authorization_token}}","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"address\": \"1HjNQ7fcXAzFgqDPWnDycL9TiTZhN7Hxck\"\n}"},"url":"{{domain}}/api/v1/verification/btc"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"24","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"ETag","value":"W/\"74dded3a6d244953f63fe17a47100ca1\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Request-Id","value":"96f91057-825e-4e37-bd65-988b45760fba","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.010024","name":"X-Runtime","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"status\":true}}"}],"_postman_id":"c1b188e1-b9f1-4855-a728-df8cd204f601"}],"id":"d9c9c43e-03da-48a4-9a52-9fddaa6c3183","_postman_id":"d9c9c43e-03da-48a4-9a52-9fddaa6c3183","description":""}],"event":[{"listen":"prerequest","script":{"id":"c4113b48-7b9c-4173-a6f6-1ee5240ad01b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aa59f30d-54cf-45eb-95cb-b913781026a3","type":"text/javascript","exec":[""]}}]}