VTAXO

The VTAXO endpoint returns assets by categories. Same asset can be present in multiple categories.

The endpoint requires an API key. Below Query Parameters section contains information on filters available on the API.

Example URL

Response Fields

FieldTypeDescription

symbol

string

The symbol

category

string

Category label

GET https://vinterapi.com/api/v3/vtaxo/

Query Parameters

NameTypeDescription

symbol

String

The symbol with which to filter

category

string

The category with which to filter

Headers

NameTypeDescription

Authorization*

String

your_secret_api_key

{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "symbol": "eth",
      "category": "layer1"
    },
    {
      "symbol": "eth",
      "category": "smartcontractplatform"
    },
    {
      "symbol": "eth",
      "category": "metaversechain"
    }
  ],
  "params": {
    "symbol": "eth"
  }
}

Last updated