Skip to main content
GET
/
token
/
{id}
/
tags
Get all tags for a token
curl --request GET \
  --url https://api.odin.fun/v1/token/{id}/tags \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "created_time": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Token ID

Response

Returns all tags for the token

data
object[]