DappLooker Docs
  • 👋Welcome
  • Data APIs for AI
    • Overview
    • Changelog
    • API Authentication
    • API Endpoints
      • GET: Crypto Token Market Data
      • GET: List of All Tokens
      • GET: Multi-Timeframe Technical Analysis
      • GET: Agent Details
      • POST: AI-Powered Query via NLQ
    • Best Practices
    • Conclusion
  • DappLooker Analytics
    • 🗃️Products
      • 📶Analytics
        • 🔎Browse and Search data
        • 📈Creating Charts
          • No-Code Charts
          • SQL Charts
        • 🔢Custom Values
        • 📊Dashboards
          • Create Dashboard
          • Add Charts to Dashboard
          • Discover Page
          • Link dashboard to another dashboard
          • Adding Filters to Dashboard
            • Time Filter
        • ♻️Convert No-Code to SQL
        • 🔗Making Charts and Dashboards Public
      • 🔍Subgraph Analyzer
      • ✨AI Studio
        • AI Studio API Support
      • 🤖DataBOT
        • 🎮Discord Bot
        • ▶️Telegram Bot
        • 🌐Connect with Leading Networks and dApps
      • 🔑DappLooker SDK
        • 🔎Tracking API Usage
    • 🌐Supported Networks
      • Blockchain Data
      • Smart Contracts
      • Subgraphs
      • SubQuery
      • Offchain Data Sources
    • 📲Registering Data
      • My Dashboard Overview
      • Smart Contracts
      • Subgraph
      • Subquery
      • Off-Chain Integration
    • 🔖Featured Projects
    • 🎯Features
      • XRay Feature
      • Filtering
      • Summarize
      • Downloading
        • Download Chart Data
      • Editor Panel
        • Preview Chart
        • Joining Data
        • Types Of Join Data
        • Sorting
        • Row Limit
        • Convert to models
        • Duplicate a Chart
        • New Collection
      • Creating Custom Column and Custom Expressions
      • 📷Screenshot
      • 🗃️Collections
        • Browse Collection
        • Personal Collection
        • Team Collection
    • ⛓️Smart Contract Live Query
    • 🔔Push Notifications
      • 👀Where to view notifications?
      • 📰Push x MetaMask Snaps
    • 👨‍⚖️Case Studies
      • 1️⃣Community Updates
      • 2️⃣DeFi Reports
      • 3️⃣On-Chain & Off-Chain Analysis
      • 4️⃣User Retention Analysis
      • 5️⃣DappLooker Telegram Bot
      • 6️⃣Subgraph Powered No-Code Dashboards
      • 7️⃣API Use Case: Beamswap
      • 8️⃣Embedding Use Case: GRTDataHub
    • 💰Pricing
      • Pricing Breakdown
      • Discounts And Payments
    • 💻Deploy a subgraph on the DappLooker custom node
    • 🥷DappLooker No-code Ninjas Program!
    • 🤝Sponsor With Us
    • 🔗Relevant Resources
    • ☎️Contact Us
  • API Guides
    • Get API Key
    • How to Get an API of a Chart
    • Render Chart or Dashboard as an Image with API
    • Mintbase
      • Individual Store Level APIs
      • Mintbase Protocol Level APIs
    • Nordek Developer APIs
  • Explorers
    • CeloSpy
    • VaraSpy
Powered by GitBook
On this page

Was this helpful?

  1. Data APIs for AI
  2. API Endpoints

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 10 hours ago

Was this helpful?