Skip to main content
GET
/
v1
/
tags
Get all tags
curl --request GET \
  --url https://api.rated.network/v1/tags \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "id": "<string>",
      "name": "<string>",
      "network": "mainnet",
      "organizationId": "<string>",
      "createdBy": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "validatorCount": 123,
      "avgValidatorEffectiveness": 123,
      "rank": 123,
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

window
enum<string> | null

The time window of statistics

Available options:
1d,
7d,
30d,
all

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
TagWithStats · object[]
required