Address
This endpoint is used to retrieve obol techne credentials an address owns
Path parameters
addressstringRequired
The address to check the techne credentials for.
Responses
200
The address techne credentials object
application/json
Responseany of
400
The Address provided is not valid
500
An unknown error occurred
get
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
Path parameters
addressstringRequired
The address to check the techne credentials for.
Responses
200
The address techne credentials object
application/json
Responseany of
400
The Address provided is not valid
500
An unknown error occurred
get
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.
Path parameters
networkstringRequiredExample:
The network to retrieve operators on
{"summary":"Ethereum Mainnet","value":"mainnet"}
Query parameters
pageintegerRequiredDefault:
The page number to retrieve.
0
limitintegerRequiredDefault:
The number of operators to return.
100
sortBystringOptionalDefault:
numerical field to sort by
active_validators_count
sortOrderstringOptionalDefault:
order of sorting the field
desc
detailsstringRequiredDefault:
The flag to populate operators information.
false
Responses
200
A paged list of Operators on this network
application/json
Responseany of
400
Network not spported
500
An unknown error occurred
get
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
.
Path parameters
networkstringRequiredExample:
The network to retrieve operators on
{"summary":"Ethereum Mainnet","value":"mainnet"}
Query parameters
partialAddressstringRequired
A substring of the address
of Operator.
pageintegerRequiredDefault:
The page number to retrieve.
0
limitintegerRequiredDefault:
The number of operators to return.
100
Responses
200
A paged list of Operators on this network
application/json
Responseany of
404
Operators not found
500
An unknown error occurred
get
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?