ROBOTOMATED.
975ROBOTS//$103BMARKET

Robotomated API

Access the world's most comprehensive robot database

Getting Started

1. Request an API Key

Send a request to api@robotomated.com with your name, organization, and intended use case. We typically respond within one business day.

2. Base URL

https://robotomated.com/api/v1

3. Authentication

Include your API key in every request via the x-api-key header.

x-api-key: YOUR_API_KEY

Endpoints Reference

GET/api/v1/robots
?category=warehouse&limit=10&offset=0&sort=robo_score

List robots with optional filtering, pagination, and sorting.

GET/api/v1/robots/:slug

Retrieve full details for a single robot by its URL slug.

GET/api/v1/categories

List all robot categories.

GET/api/v1/manufacturers
?limit=50&offset=0

List manufacturers with pagination.

Response Format

All list endpoints return a consistent envelope with pagination metadata.

200 OK
{
  "data": [
    {
      "slug": "boston-dynamics-spot",
      "name": "Spot",
      "manufacturer": "Boston Dynamics",
      "category": "inspection",
      "robo_score": 87
    }
  ],
  "total": 642,
  "limit": 20,
  "offset": 0
}

Code Examples

cURL

curl -H "x-api-key: YOUR_KEY" \
  https://robotomated.com/api/v1/robots?category=warehouse

JavaScript

const res = await fetch('https://robotomated.com/api/v1/robots', {
  headers: { 'x-api-key': 'YOUR_KEY' }
});
const { data } = await res.json();

Python

import requests

r = requests.get(
    'https://robotomated.com/api/v1/robots',
    headers={'x-api-key': 'YOUR_KEY'}
)
data = r.json()['data']

Rate Limits

1,000

requests / day

Free Tier

10,000

requests / day

Partner Tier

Rate-limited responses return 429 Too Many Requests with a Retry-After header indicating seconds until the limit resets.

Need More?

Need higher limits or custom integrations? Contact us about our partner program.

Contact the API Team