Payment

DotsTo-financeapi
 YH Finance Complete
  
Free

Real time low latency Finance API for stock market, crypto currencies, and currency exchange.
DotsTo-galileo
 Galileo
  
Premium

Welcome to the Galileo Pro API documentation!This site contains guides on basic Galileo concepts and instructions for using the endpoints. We're just getting started on the guides—there are many more to come.

curl --request POST \ --url https://api-sandbox.cv.gpsrv.com/intserv/4.0/ping \ --header 'Accept: application/json' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data apiLogin=aaaa-bbbb \ --data apiTransKey=1212 \ --data providerId=9988 \ --data transactionId=777-777-777
import requests url = "https://api-sandbox.cv.gpsrv.com/intserv/4.0/ping" payload = "apiLogin=aaaa-bbbb&apiTransKey=1212&providerId=9988&transactionId=777-777-777" headers = { "Accept": "application/json", "Content-Type": "application/x-www-form-urlencoded" } response = requests.request("POST", url, data=payload, headers=headers) print(response.text)
{ "status_code": 0, "status": "Success", "processing_time": 0.022, "response_data": {}, "echo": { "provider_transaction_id": "", "provider_timestamp": null, "transaction_id": "A43ZQ5ZMR4XALONBW1G3" }, "rtoken": "8cc16de0-5eda-4e2a-968e-3b08fce6f778", "system_timestamp": "2020-07-13 10:48:07" }
DotsTo-brave-new-coin
 Brave New Coin
  
Free

Check BNC for the Bitcoin price, Ethereum Price, Ripple Price - and the latest crypto news and market data.

curl -X POST https://api.bravenewcoin.com/v3/oauth/token -H 'Content-Type: application/json' -d ' { "grant_type": "client_credentials", "client_id": "your client id", "client_secret": "your client secret", "audience": "https://api.bravenewcoin.com" }'
var request = require("request"); var options = { method: 'POST', url: 'https://api.bravenewcoin.com/v3/oauth/token', headers: { 'Content-Type': 'application/json' }, body: { grant_type: 'client_credentials', client_id: 'your client id', client_secret: 'your client secret', audience: 'requested audience' }, json: true }; request(options, function (error, response, body) { if (error) { throw new Error(error); } let access_token = body.access_token; });
Coming Soon !
Robot Icon DotsTo