Address
This endpoint is used to retrieve obol techne credentials an address owns
The address to check the techne credentials for.
The address techne credentials object
The Address provided is not valid
An unknown error occurred
GET //v1/address/techne/{address} HTTP/1.1
Host: api.obol.tech
Accept: */*
{
"base": [
"text"
],
"bronze": [
"text"
],
"silver": [
"text"
],
"gold": [
"text"
]
}
This endpoint is used to retrieve the badges an address owns
The address to check the techne credentials for.
The address techne credentials object
The Address provided is not valid
An unknown error occurred
GET //v1/address/badges/{address} HTTP/1.1
Host: api.obol.tech
Accept: */*
{
"badges": [
"text"
]
}
This endpoint fetches a number of operators for a given network.
The network to retrieve operators on
{"summary":"Ethereum Mainnet","value":"mainnet"}
The page number to retrieve.
0
The number of operators to return.
100
numerical field to sort by
active_validators_count
order of sorting the field
desc
The flag to populate operators information.
false
A paged list of Operators on this network
Network not spported
An unknown error occurred
GET //v1/address/network/{network} HTTP/1.1
Host: api.obol.tech
Accept: */*
{
"operators": [
"text"
],
"total_count": 2,
"total_pages": 4
}
This endpoint is used to search for operators that match a substring of their address
.
The network to retrieve operators on
{"summary":"Ethereum Mainnet","value":"mainnet"}
A substring of the address
of Operator.
The page number to retrieve.
0
The number of operators to return.
100
A paged list of Operators on this network
Operators not found
An unknown error occurred
GET //v1/address/search/{network} HTTP/1.1
Host: api.obol.tech
Accept: */*
{
"operators": [
"text"
],
"total_count": 2,
"total_pages": 4
}
Last updated
Was this helpful?