For developers
Give your agent clean data, not HTML
Every listing on AI Agents Live, returned as Markdown. Built for AI coding agents, not browsers.
AI Agents Live already lists AI agents, ranked and reviewed by real users. Point your coding agent at the same data, structured for machines instead of browsers.
Markdown, not HTML
No tags, no scraping, no broken selectors when we redesign a page.
20 requests per second
Four times the public rate limit. Enough for batch lookups.
A contract that holds
The response shape is documented and won't change under you.
Your own listings, on demand
Check status, ratings, and review counts without opening a browser.
$3 / month
Cancel anytime. Your key works until the period you paid for ends. No refunds.
Quick start
Pick a language and run it as is.
curl https://aiagentslive.com/agents \
-H "Authorization: Bearer agl_live_..." \
-H "Accept: text/markdown"
import requests
response = requests.get(
"https://aiagentslive.com/agents",
headers={"Authorization": "Bearer agl_live_...", "Accept": "text/markdown"},
)
print(response.text)
require "net/http"
headers = { "Authorization" => "Bearer agl_live_...", "Accept" => "text/markdown" }
puts Net::HTTP.get(URI("https://aiagentslive.com/agents"), headers)
const response = await fetch("https://aiagentslive.com/agents", {
headers: { Authorization: "Bearer agl_live_...", Accept: "text/markdown" },
});
console.log(await response.text());