Skip to main content
POST
/
v1
/
tags
/
{id}
/
validators
Add validators to a tag
curl --request POST \
  --url https://api.rated.network/v1/tags/{id}/validators \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pubkeys": [
    "<string>"
  ]
}
'
[
  {
    "validatorPubkey": "<string>",
    "tagId": "<string>",
    "tagName": "<string>",
    "createdBy": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]
You can add upto 1,000 validators at a time with an upper bound of 15,000 validators per tag. If you’d like to add more than that per tag, please reach out to us at [email protected]!

Authorizations

Authorization
string
header
required

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

Headers

X-Rated-Network
enum<string>
default:mainnet
Available options:
mainnet,
hoodi,
holesky

Path Parameters

id
string<uuid4>
required

Body

application/json
pubkeys
string[]
required
Required array length: 1 - 1000 elements

Response

Successful Response

validatorPubkey
string
required
tagId
string<uuid4>
required
tagName
string
required
createdBy
string<uuid4>
required
createdAt
string<date-time>
required