GET
/
operators
/
{address}
/
events
/
registration-status
curl --request GET \
  --url https://api.eigenexplorer.com/operators/{address}/events/registration-status \
  --header 'X-API-Token: <x-api-token>'
{
  "tx": "0xae41958d0342a4485536f701c72723625131680f182eb21f95abdac6d74d0ff0",
  "blockNumber": 21045085,
  "blockTime": "2024-10-25T20:41:11.000Z",
  "type": "REGISTRATION_STATUS",
  "args": {
    "avs": "0xb73a87e8f7f9129816d40940ca19dfa396944c71",
    "status": "REGISTERED"
  }
}

The default date range between startAt and endAt is 7 days, with startAt set 7 days before endAt.

By default, endAt is set to the current timestamp (now).
The maximum allowed date range is 30 days.

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

address
string
required

The address of the operator

Example:

"0xDbEd88D83176316fc46797B43aDeE927Dc2ff2F5"

Query Parameters

txHash
string

The transaction hash associated with the event

startAt
string

Start date in ISO string format

Example:

"2024-11-15T00:00:00.000Z"

endAt
string

End date in ISO string format

Example:

"2024-12-15T00:00:00.000Z"

status
enum<string>

The status of Registration

Available options:
REGISTERED,
DEREGISTERED
avsAddress
string

The address of the avs

skip
string
default:0

The number of records to skip for pagination

Example:

0

take
string
default:12

The number of records to return for pagination

Example:

12

Response

200
application/json
The registration events found for the operator.
tx
string
required

The transaction hash

Example:

"0xae41958d0342a4485536f701c72723625131680f182eb21f95abdac6d74d0ff0"

blockNumber
number
required

The block number of the transaction

Example:

21045085

blockTime
string
required

The block time of the transaction as an ISO 8601 string

Example:

"2024-10-25T20:41:11.000Z"

type
enum<string>
required

The type of the event

Available options:
REGISTRATION_STATUS
Example:

"REGISTRATION_STATUS"

args
object
required