Skip to main content
GET
/
tags
Get all tags
curl --request GET \
  --url https://api.odin.fun/v1/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.

Response

200 - application/json

Returns all tags

data
object[]