Skip to main content
POST
/
authenticator-pubkeys
Get Authenticator Pubkeys
curl --request POST \
  --url https://api.example.com/authenticator-pubkeys \
  --header 'Content-Type: application/json' \
  --data '
{
  "leaf_index": "0x1"
}
'
{
  "authenticator_pubkeys": [
    "<string>"
  ]
}

Body

application/json

Query for the indexer based on a leaf index.

Used for getting inclusion proofs and signature nonces.

leaf_index
string<hex>
required

The leaf index to query (from the WorldIDRegistry).

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

Example:

"0x1"

Response

200 - application/json

Response containing authenticator public keys for an account from the indexer.

authenticator_pubkeys
string<hex>[]
required

The compressed authenticator public keys for the account.