azeth_get_registry_entry
Retrieve a participant's registration details from the trust registry by token ID or smart account address, including capabilities and reputation.
Instructions
Look up a specific participant on the trust registry by token ID or smart account address.
Use this when: You know a specific agent/service address or token ID and want to see their registration details, capabilities, and reputation.
Provide EITHER tokenId OR address (at least one required). If address is provided, it is resolved to a token ID via on-chain lookup.
Returns: Full registry entry including name, description, entity type, capabilities, endpoint, and weighted reputation score.
This is read-only and safe to call at any time.
Example: { "address": "0x1234..." } or { "tokenId": "5" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | Target chain. Defaults to AZETH_CHAIN env var or "baseSepolia". Accepts "base", "baseSepolia", "ethereumSepolia", "ethereum" (and aliases like "base-sepolia", "eth-sepolia", "sepolia", "eth", "mainnet"). | |
| tokenId | No | ERC-8004 token ID of the participant to look up. | |
| address | No | Smart account address of the participant. Resolved to tokenId on-chain. |