API ReferenceGuidesChangelog
Insights

List coins

Get a list of coins in a project.

GET
/v1/insights/{owner}/{slug}/coins

Authorization

api-key<token>

In: header

Path Parameters

owner*string
slug*string

Query Parameters

projectId?string
version?integer
Formatint32
limit?integer
Formatint32
offset?integer
Formatint32
searchQuery?string

Response Body

application/json

curl -X GET "https://example.com/v1/insights/string/string/coins"
{  "coins": [    {      "address": {        "address": "string",        "chain": "string"      },      "symbol": "string"    }  ],  "computeStats": {    "binaryVersionHash": "string",    "clickhouseStats": {      "memoryUsage": "string",      "queryDurationMs": "string",      "readBytes": "string",      "readRows": "string",      "resultBytes": "string",      "resultRows": "string"    },    "computeCostMs": "string",    "computedAt": "2019-08-24T14:15:22Z",    "computedBy": "string",    "isCached": true,    "isRefreshing": true  }}