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

Field
Type
Description

symbol

string

The symbol

category

string

Category label

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

Query Parameters

Name
Type
Description

symbol

String

The symbol with which to filter

category

string

The category with which to filter

Headers

Name
Type
Description

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

Was this helpful?