API ReferenceGuidesChangelog
Prices

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. ![screenshot](https://media.githubusercontent.com/media/sentioxyz/docs/HEAD/assets/coingecko_apiid.png)

POST
/v1/prices/add_coin_by_gecko

Authorization

api-key<token>

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"}