Add coin by Gecko
adds a coin by its coingecko id. coingecko id the API ID of the coin in coingecko web page. please AWARE that the coingecko id is NOT the same as the symbol of the coin. 
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/v1/prices/add_coin_by_gecko" \ -H "Content-Type: application/json" \ -d '{}'{ "coins": [ { "address": { "address": "string", "chain": "string" }, "symbol": "string" } ], "currentPrice": 0.1, "message": "string", "status": "OK", "symbol": "string", "timestamp": "2019-08-24T14:15:22Z"}Get price GET
GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
Batch get prices POST
Next Page