Skip to main content
GET

Overview

Returns a paginated list of agents from the ERC-8004 Identity Registry on Base, including each agent’s owner address. Use this to discover valid agent IDs for submitting reputation feedback.
This is a free endpoint (0 Cred Units). It reads directly from the on-chain Identity Registry contract on Base.

Authentication

Query Parameters

integer
default:"1"
Page number (must be >= 1)
integer
default:"20"
Number of agents per page (1-100)

Response

array
Array of agent objects on this page
integer
The ERC-8004 agent ID (ERC-721 token ID)
string
Ethereum address of the agent’s owner (checksummed)
object
Agent registration metadata from tokenURI (null if unavailable)
string
Agent name from registration metadata
string
Agent description from registration metadata
string
Agent image URI from registration metadata
integer
Total number of agents in the Identity Registry
integer
Current page number
integer
Number of agents per page
Agent IDs are 1-indexed ERC-721 token IDs. Burned or nonexistent tokens are automatically skipped, so a page may return fewer agents than the limit.

Use Cases

Browse all registered agents to find valid IDs for reputation feedback submission. Useful for building dashboards or agent directories.
Use page and limit to iterate through the full registry. The total field tells you how many pages exist (total_pages = ceil(total / limit)).

Performance

  • Response Time: Typically 1-3 seconds depending on page size
  • Data Source: On-chain ownerOf() calls to the Identity Registry on Base (chain 8453)
  • Maximum Page Size: 100 agents per request