GET: Agent Metadata

Retrieve a list of available AI Agents and their basic metadata. This endpoint is useful for discovering which Agents are currently active on a specific chain or protocol.

Endpoint:

GET: /agent-metainfo

Query Parameters:

Parameter name

Type

Description

api_key

string

Your unique API key.

ecosystem

string

Ecosystem you are looking to query agents for. Values virtuals

token_addresses

string

Comma separated token address, you want metainfo for.

page

integer

Page number

Example cURL Request:

curl -X GET "https://api.dapplooker.com/v1/agent-metainfo?api_key={api_key}&page=1&ecosystem=virtuals" -H "Content-Type: application/json

Sample Response:

[
	{
		"id": "aixbt",
		"symbol": "aixbt",
		"name": "aixbt",
		"ecosystem": "virtuals",
		"address": "0x4f9fd6be4a90f2620860d680c0d4d5fb53d1a825",
		"network": "base"
	},
	{
		"id": "loky-by-virtuals",
		"symbol": "loky",
		"name": "Loky",
		"ecosystem": "virtuals",
		"address": "0x1a3e429d2d22149cc61e0f539b112a227c844aa3"
		"network": "base"
	}
]

Response Fields Explanation:

  • id (string): Loky Agent ID

  • symbol (string): Agent symbol

  • name (string): Agent name

  • ecosystem (string): Agent ecosystem

  • address (string): Agent address

  • network (string): Network on which agent is deployed

Last updated

Was this helpful?