Skip to content
Robolist.aiRobots, Ranked.

Robolist Developer API

Read the world's largest open robotics catalog from your code.

Quickstart — 60 seconds

1

Create an API key

Sign in, claim your company, and visit /dashboard/api-keys to generate your key. API access requires the Verified plan or above.

2

Make your first request

Replace YOUR_KEY with your API key:

curl -s https://robolist.ai/api/v1/robots/search \
  -H "Authorization: Bearer YOUR_KEY" \
  -G \
  --data-urlencode "category=cobot" \
  --data-urlencode "limit=3"
3

Parse the response

The API returns cursor-paginated JSON:

{
  "data": [
    {
      "id": "01HZ...",
      "slug": "ur5e",
      "name": "UR5e",
      "category": "cobot",
      "companyName": "Universal Robots",
      "companySlug": "universal-robots",
      "productScore": 84,
      "url": "https://robolist.ai/robots/ur5e"
    }
  ],
  "next_cursor": "eyJpZCI6Ij..."
}

Endpoints at a glance

Rate limits

Plans are billed annually, so quotas are annual too. Enforcement uses a per-second token bucket sized to the daily average. Burst headroom is roughly 10% of the daily cap. On rate limit: HTTP 429 with a Retry-After header.

PlanAnnual quota
Free
Verified30,000 / yr (~82/day avg)
Pro1,000,000 / yr (~2,740/day avg)
EnterpriseCustom

Need a higher limit? View plans or contact us.

API Reference

Interactive docs powered by Scalar. Try requests directly in the browser once you have an API key.

Using Claude Desktop, Cursor, or another LLM client? The Robolist MCP server lets you query the catalog as a native tool — no API key required.