developers.quoine.comQuoine Exchange API Reference

developers.quoine.com Profile

developers.quoine.com

Maindomain:quoine.com

Title:Quoine Exchange API Reference

Description:NAV ruby Introduction API Version The base URL for Quoinex production is https://api.liquid.com/ . All responses are in JSON format with the following status codes: HTTP 200: OK Response is correct. T

Discover developers.quoine.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

developers.quoine.com Information

Website / Domain: developers.quoine.com
HomePage size:278.754 KB
Page Load Time:0.389072 Seconds
Website IP Address: 104.18.1.201
Isp Server: CloudFlare Inc.

developers.quoine.com Ip Information

Ip Country: Singapore
City Name: Singapore
Latitude: 1.2896699905396
Longitude: 103.85006713867

developers.quoine.com Keywords accounting

Keyword Count

developers.quoine.com Httpheader

Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Date: Wed, 03 Mar 2021 00:56:54 GMT
Last-Modified: Fri, 30 Oct 2020 11:32:56 GMT
ETag: W/"32aa968f1365fb13c010e5c588f40a37"
x-amz-server-side-encryption: AES256
x-amz-version-id: uT2XA4qmrSI7pm6T36Eg4fr6h_qC.6Cq
Server: AmazonS3
Content-Encoding: gzip
Vary: Accept-Encoding
X-Cache: Miss from cloudfront
Via: 1.1 bcc31f3e5b9e78f99a5a01aa529f6c94.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: EWR53-C2
X-Amz-Cf-Id: xrEwJY_FTsPJsxW1tfOZdYN-O3XvlA29MpgTqBLOekq_YRpFX8s0aQ==

developers.quoine.com Meta Info

charset="utf-8"/
content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/
content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport"/

104.18.1.201 Domains

Domain WebSite Title

developers.quoine.com Similar Website

Domain WebSite Title
developers.quoine.comQuoine Exchange API Reference
apidocs.tankutility.comAPI Reference
dev.passkit.netPassKit v2 API Reference
itransact.comiTransact API Reference
api.plugshare.comPlugShare API Reference
dev.frontapp.comFront API Reference
developers.upwork.comUpwork API Reference
api.highcharts.comHighcharts JS API Reference
dev.codewars.comCodewars API Reference
apidocs.instagift.comInstagift API Reference
api.daypilot.orgDayPilot Pro JavaScript API Reference
api.stackexchange.comStack Exchange API
api.drupal.orgDrupal 8.8.x | API reference | Drupal API
docs.openexchangerates.orgAPI Introduction · Open Exchange Rates
subscriptions.oanda.comExchange Rates API Free Trial | OANDA

developers.quoine.com Traffic Sources Chart

developers.quoine.com Alexa Rank History Chart

developers.quoine.com aleax

developers.quoine.com Html To Plain Text

NAV ruby Introduction API Version The base URL for Quoinex production is https://api.liquid.com/ . All responses are in JSON format with the following status codes: HTTP 200: OK Response is correct. The body of the response will include the data requested. HTTP 400: Bad Request There was an error with the request. The body of the response will have more info HTTP 401: Unauthorized Token is invalid. If your API key is wrong a 401 will also be served, so check the response body, it might be that the API_KEY is invalid. HTTP 422: Unprocessable Entity There was an error with the request. The body of the response will have more info. Some possible reasons: - Missing params - The format of data is wrong HTTP 429: Too Many Requests This status indicates that the user has sent too many requests in a given amount of time HTTP 503: Service Unavailable Many reasons, body will include details - An internal error on Authy. - Your application is accessing an API call you don't have access too. - API usage limit. If you reach API usage limits a 503 will be returned, please wait until you can do the call again. The current API version is 2. Please include the following header in the request to get correct API behaviors. Header Value X-Quoine-API-Version 2 Rate Limiting API users should not make more than 300 requests per 5 minute. Requests go beyond the limit will return with a 429 status Authentication require 'uri' require 'net/http' require 'time' require 'jwt' uri = URI . parse ( "https://api.liquid.com" ) http = Net :: HTTP . new ( uri . host , uri . port ) http . use_ssl = true token_id = 'YOUR_API_TOKEN_ID' user_secret = 'YOUR_API_SECRET' path = '/orders?product_id=1' auth_payload = { path: path , nonce: DateTime . now . strftime ( '%Q' ), token_id: token_id } signature = JWT . encode ( auth_payload , user_secret , 'HS256' ) request = Net :: HTTP :: Get . new ( path ) request . add_field ( 'X-Quoine-API-Version' , '2' ) request . add_field ( 'X-Quoine-Auth' , signature ) request . add_field ( 'Content-Type' , 'application/json' ) response = http . request ( request ) Authentication requires 2 parameters: API Token ID and API Secret . These parameters can be obtained from API Setting page We use JSON Web Token open standard for Authentication: First you need to build an auth payload, which includes the following parameters: Auth Payload Parameters: Parameters Optional? Description path request path, e.g /orders?product_id=1 nonce a strictly increasing number, uniquely created for each request. We recommend using a millisecond timestamp at the time of making request, e.g 1459142524488 token_id Token ID After constructing the auth payload, you need to sign it with your secret using HMAC-SHA256 (HS256). JWT.encode(auth_payload, user_secret, 'HS256') You can choose to manually sign by following JWT specs . But we highly recommend using a JWT library , which is available in a wide range of programming languages. Request Header: Parameters Optional? Description X-Quoine-Auth Signature obtained from signing the Auth Payload Types Timestamps 1457974024 (for 2016-03-14T16:47:04 in ISO 8601) Unless otherwise specified, all timestamps from API are returned in Unix Time . Numbers Decimal numbers are returned as strings to avoid floating precision errors. Integer numbers (including IDs) are unquoted. Errors Due to legacy reason, there are 2 type of error responses: Message { "message" : "missing parameters" } The message will be in the requester default language. For public api, please request with HTTP_ACCEPT_LANGUAGE header set to your preferred language Code Code with the following structure will be returned { “errors”: {“object”: [“errors list”]} } { "errors" : { "user" :[ "not_enough_fund" ]} } Pagination { "models" : [ "<json objects>" ], "current_page" : "<current page>" , "total_pages" : "<number of pages>" } Unless otherwise specified, all API requesting lists will be paginated with the following format: The default number of items returned is 20. To get more, you can specify parameter `limit`. For example GET /trades?limit=100. Note that the maximum number of items we can return at a time is 1000 I. Public API Public API does not require authentication Products Get Products GET /products [ { "id" : 5 , "product_type" : "CurrencyPair" , "code" : "CASH" , "name" : "CASH Trading" , "market_ask" : "48203.05" , "market_bid" : "48188.15" , "indicator" : -1 , "currency" : "JPY" , "currency_pair_code" : "BTCJPY" , "symbol" : "Â¥" , "fiat_minimum_withdraw" : "1500.0" , "pusher_channel" : "product_cash_btcjpy_5" , "taker_fee" : "0.0" , "maker_fee" : "0.0" , "low_market_bid" : "47630.99" , "high_market_ask" : "48396.71" , "volume_24h" : "2915.627366519999999998" , "last_price_24h" : "48217.2" , "last_traded_price" : "48203.05" , "last_traded_quantity" : "1.0" , "quoted_currency" : "JPY" , "base_currency" : "BTC" , "exchange_rate" : "0.009398151671149725" , "timestamp" : "1576739219.195353100" }, ... ] Get the list of all available products. Get Perpetual Products GET /products?perpetual=1 [ { "id" : "603" , "product_type" : "Perpetual" , "code" : "CASH" , "name" : null , "market_ask" : "1143900" , "market_bid" : "1143250" , "currency" : "JPY" , "currency_pair_code" : "P-BTCJPY" , "pusher_channel" : "product_cash_p-btcjpy_603" , "taker_fee" : "0.0" , "maker_fee" : "0.0" , "low_market_bid" : "1124450.0" , "high_market_ask" : "1151750.0" , "volume_24h" : "0.1756" , "last_price_24h" : "1129850.0" , "last_traded_price" : "1144700.0" , "last_traded_quantity" : "0.014" , "quoted_currency" : "JPY" , "base_currency" : "P-BTC" , "tick_size" : "50.0" , "perpetual_enabled" : true , "index_price" : "1142636.03935" , "mark_price" : "1143522.18417" , "funding_rate" : "0.00033" , "fair_price" : "1143609.31009" , "timestamp" : "1581558659.195353100" , } , ... ] Get the list of all available perpetual products. Get a Product GET /products/:id { "id" : 5 , "product_type" : "CurrencyPair" , "code" : "CASH" , "name" : "CASH Trading" , "market_ask" : "48203.05" , "market_bid" : "48188.15" , "indicator" : -1 , "currency" : "JPY" , "currency_pair_code" : "BTCJPY" , "symbol" : "Â¥" , "fiat_minimum_withdraw" : "1500.0" , "pusher_channel" : "product_cash_btcjpy_5" , "taker_fee" : "0.0" , "maker_fee" : "0.0" , "low_market_bid" : "47630.99" , "high_market_ask" : "48396.71" , "volume_24h" : "2915.62736652" , "last_price_24h" : "48217.2" , "last_traded_price" : "48203.05" , "last_traded_quantity" : "1.0" , "quoted_currency" : "JPY" , "base_currency" : "BTC" , "exchange_rate" : "0.009398151671149725" , "timestamp" : "1576739219.195353100" } Parameters: Parameters Optional? Description id Product ID Get Order Book GET /products/:id/price_levels { "buy_price_levels" : [ [ "416.23000" , "1.75000" ], ... ], "sell_price_levels" : [ [ "416.47000" , "0.28675" ], ... ], "timestamp" : "1576729943.772247300" } Parameters: Parameters Optional? Description id Product ID full yes 1 to get all price levels (default is 20 each side) Format Each price level follows: [ price , amount ] Executions Get Executions GET /executions?product_id=1&limit=2&page=2 Success Response: { "models" : [ { "id" : 1011880 , "quantity" : "6.118954" , "price" : "409.78" , "taker_side" : "sell" , "created_at" : 1457370745 }, { "id" : 1011791 , "quantity" : "1.15" , "price" : "409.12" , "taker_side" : "sell" , "created_at" : 1457365585 } ], "current_page" : 2 , "total_pages" : 1686 } Get a list of recent executions from a product (Executions are sorted in DESCENDING order - Latest first) Parameters Optional? Description product_id Product ID limit yes How many executions should be returned. Must be <= 1000. Default is 20 page yes From what page the executions should be returned, e.g if limit=20 and page=2, the response would start from the 21st execution. Default is 1 Get Executions by Timestamp GET /executions?product_id=1&timestamp=1430630863&limit=2 Success Response: [ { "id" : 960598 , "quantity" : "5....

developers.quoine.com Whois

"domain_name": "QUOINE.COM", "registrar": "Cloudflare, Inc.", "whois_server": "whois.cloudflare.com", "referral_url": null, "updated_date": [ "2020-12-16 19:16:20", "2021-02-05 09:04:51" ], "creation_date": "2014-01-13 01:40:21", "expiration_date": "2022-01-13 01:40:21", "name_servers": [ "HUGH.NS.CLOUDFLARE.COM", "LOLA.NS.CLOUDFLARE.COM", "hugh.ns.cloudflare.com", "lola.ns.cloudflare.com" ], "status": [ "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clienttransferprohibited https://icann.org/epp#clienttransferprohibited" ], "emails": "registrar-abuse@cloudflare.com", "dnssec": "signedDelegation", "name": "DATA REDACTED", "org": "DATA REDACTED", "address": "DATA REDACTED", "city": "DATA REDACTED", "state": "Tokyo", "zipcode": "DATA REDACTED", "country": "JP"