GET
/
v1
/
eth
/
entities
curl --request GET \
  --url https://api.rated.network/v1/eth/entities \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/eth/entities?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/eth/entities?limit=10&offset=10",
  "results": [
    [
      {
        "id": "0xa40dfee99e1c85dc97fdc594b16a460717838703",
        "name": "0xa40dfee99e1c85dc97fdc594b16a460717838703",
        "networkPenetration": 0.07855633469653803,
        "operatorCount": 0,
        "type": "depositAddress",
        "validatorCount": 37361
      }
    ]
  ]
}

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>
Available options:
mainnet,
hoodi,
holesky

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

entityType
enum<string> | null

The type of entity class you would like returned

Available options:
depositAddress,
withdrawalAddress,
nodeOperator,
pool,
poolShare,
entity,
validator,
privateSet
sortBy
string | null

The filter you want results to be sorted by

sortOrder
enum<string> | null
default:asc

The sort order for the results

Available options:
asc,
desc

Response

200
application/json

Successful Response

The response is of type object.