v1

latestOpenAPI 3.1.0MIT2026-07-13698.3 KB
indexer

Get the pending recovery agent update for a particular World ID given its leaf index.

If no recovery agent update is pending, the zero address and zero execute-after timestamp are returned.

post/pending-recovery-agent

Request body

leaf_indexstring hex required

The leaf index to query (from the WorldIDRegistry).

Accepts decimal or 0x/0X-prefixed hex input.

Example request

{
  "leaf_index": "0x1"
}

Response

execute_afterstring hex required

The earliest timestamp at which the pending recovery agent update may be executed.

Please note this may be zero if no recovery agent update is pending.

Serialized as a canonical 0x-prefixed hex string.

pending_recovery_agentstring hex required

The pending recovery agent for the World ID.

Please note this may be the zero address if no recovery agent update is pending.

Serialized as a canonical 0x-prefixed hex string.

Example response

{
  "execute_after": "0x0",
  "pending_recovery_agent": "0x0"
}