Discover/Agent API
live

Agent APIagent.ai

Access agent listings, builder profiles, category tags, and execution stats from the Agent.ai marketplace via 6 structured endpoints.

Endpoint health
verified 7d ago
get_agent_tags
list_agents
get_agent_details
list_builders
get_builder_profile
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Agent API?

The Agent.ai API provides 6 endpoints to search, filter, and retrieve structured data from the Agent.ai AI agent marketplace. Use list_agents to run keyword searches across agent names and descriptions, get_agent_details to pull full metadata on a single agent including pricing tier, action types, and review scores, and list_builders to surface the top creators ranked by total execution count.

Try it
Page number (0-indexed).
Search keyword to filter agents by name or description.
api.parse.bot/scraper/9cd35268-4784-4038-ba40-74bc4c5a07cd/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9cd35268-4784-4038-ba40-74bc4c5a07cd/list_agents?page=0&query=marketing' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace agent-ai-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.agent_ai_api import AgentAI, Agent, Builder, PricingTier, AgentTag, ResourceNotFound

client = AgentAI()

# Search for marketing-related agents
for agent in client.agents.search(query="marketing", limit=5):
    print(agent.name, agent.executions, agent.reviews_score, agent.pricing_tier)

# Filter agents by category using the AgentTag enum
for agent in client.agents.by_tag(tag=AgentTag.SALES, limit=3):
    print(agent.name, agent.description, agent.is_premium)

# Get full details for a specific agent
detail = client.agents.get(agent_id="8hc9z3aiwok5ypt2")
print(detail.name, detail.reviews_score, detail.author.name)

# List available tags
for tag in client.tags.list():
    print(tag)

# List top builders and explore their agents
for builder in client.builders.list(limit=3):
    print(builder.display_name, builder.public_agents_count, builder.executions_count)
    for agent in builder.agents.list(limit=2):
        print(agent.name, agent.executions)
All endpoints · 6 totalmissing one? ·

Search for AI agents by keyword, or list all agents if no query is provided. Returns paginated results sorted by relevance. Each page contains up to 20 agents. Paginates via a 0-indexed page counter; total pages and hit count are included in the response.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
querystringSearch keyword to filter agents by name or description.
Response
{
  "type": "object",
  "fields": {
    "pages": "integer total number of pages",
    "total": "integer total number of matching agents",
    "agents": "array of agent objects with agent_id, name, description, author, executions, reviews_score, _tags, pricing_tier, and more",
    "current_page": "integer current page number (0-indexed)"
  },
  "sample": {
    "data": {
      "pages": 50,
      "total": 1447,
      "agents": [
        {
          "name": "Web Copy Analyzer",
          "_tags": [
            "Marketing",
            "Sales"
          ],
          "author": {
            "name": "Shaalin Parekh",
            "username": "Shaalin",
            "twitter_username": "Shaalin"
          },
          "agent_id": "8hc9z3aiwok5ypt2",
          "executions": 131,
          "is_premium": true,
          "description": "See exactly how your buyer would react to your website.",
          "pricing_tier": "Premium",
          "reviews_count": 1,
          "reviews_score": 5
        }
      ],
      "current_page": 0
    },
    "status": "success"
  }
}

About the Agent API

Searching and Filtering Agents

list_agents accepts an optional query string and a 0-indexed page integer. Results include agent_id, name, description, author, executions, reviews_score, and _tags for each agent, alongside pagination fields pages, total, and current_page. To filter by category instead of keyword, filter_agents_by_tag accepts a required tag string — valid values come from get_agent_tags, which returns the full list of available category tag strings with no inputs required.

Agent Detail and Taxonomy

get_agent_details takes an alphanumeric agent_id (obtainable from list or filter results) and returns a richer response: action_types array, pricing_tier (Free, Premium, or Pro), is_premium boolean, reviews_count, and an author object containing name, username, twitter_username, avatar, and user_token. This is the only endpoint that exposes action_types, making it the right call when you need to distinguish agents by what operations they perform.

Builder Profiles

list_builders returns an array of builder objects ranked by executions_count, with fields including display_name, twitter_username, agent_ai_username, and public_agents_count. To get a specific builder's agents, pass any of those identifier values to get_builder_profile, which returns the full profile object plus an agents array of that builder's published agents.

Reliability & maintenanceVerified

The Agent API is a managed, monitored endpoint for agent.ai — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when agent.ai changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official agent.ai API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Index the full Agent.ai catalog by iterating list_agents pages and storing agent metadata for internal search.
  • Build a category browser by mapping tags from get_agent_tags to paginated results from filter_agents_by_tag.
  • Compare agents by pricing_tier and executions to recommend free, high-usage options for a given use case.
  • Track top builders over time by polling list_builders and recording changes in executions_count and public_agents_count.
  • Enrich a directory of AI tools by pulling action_types and _tags from get_agent_details for each agent_id.
  • Identify prolific creators in a niche by filtering get_builder_profile results against agents with a specific tag.
  • Audit the marketplace for premium-only agents by checking is_premium across all paginated list_agents results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Agent.ai provide an official public developer API?+
Agent.ai does not publish a documented public developer API. This Parse API provides structured access to the marketplace data that Agent.ai exposes on its website.
What does `get_agent_details` return that the list endpoints don't?+
get_agent_details adds action_types (an array describing what operations the agent performs), pricing_tier (Free, Premium, or Pro), is_premium boolean, and the full author object including twitter_username and user_token. The list and filter endpoints return a summary form of each agent without those fields.
How does pagination work across list and filter endpoints?+
All paginated endpoints use 0-indexed page integers. Responses include pages (total page count), total (total matching agents), and current_page. To retrieve all results, iterate from page 0 through pages - 1.
Does the API expose agent review text or individual user reviews?+
Not currently. The API covers aggregate review data: reviews_score in list results and reviews_count in get_agent_details, but not individual review text, reviewer identities, or per-review ratings. You can fork this API on Parse and revise it to add an endpoint targeting individual review content.
Can I retrieve agents sorted by criteria other than relevance or execution count?+
list_agents returns results sorted by relevance to the search query, and list_builders is sorted by execution count. Sorting by review score, creation date, or pricing tier is not currently supported by the endpoints. You can fork this API on Parse and revise it to add alternative sort parameters.
Page content last updated . Spec covers 6 endpoints from agent.ai.
Related APIs in MarketplaceSee all →
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
theresanaiforthat.com API
Search and discover AI tools across different tasks, get detailed information about specific tools, browse available deals, and stay updated on the latest tools. Find the perfect AI solution for your needs by filtering by task category or checking featured and trending tools.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
getapp.com API
Search and compare software solutions while accessing detailed information like pricing, features, integrations, reviews, and alternatives all in one place. Get category leaders, read industry research from their blog, and make informed software decisions based on comprehensive data.
lmarena.ai API
lmarena.ai API
serviceseeking.com.au API
Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.
auctioneers.org API
Search and retrieve professional auctioneer profiles from the National Auction Association (NAA) member directory. Filter by location, specialty category, and professional designation, and access full contact and bio details for individual members.
marketplace.nvidia.com API
Search and browse NVIDIA's marketplace for GPUs, laptops, desktops, and other hardware with detailed specifications, pricing, and availability across consumer and enterprise products. Filter by GPU model, brand, and current deals to find exactly what you're looking for.