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/v13. Authentication
Include your API key in every request via the x-api-key header.
x-api-key: YOUR_API_KEY
Endpoints Reference
/api/v1/robots?category=warehouse&limit=10&offset=0&sort=robo_scoreList robots with optional filtering, pagination, and sorting.
/api/v1/robots/:slugRetrieve full details for a single robot by its URL slug.
/api/v1/categoriesList all robot categories.
/api/v1/manufacturers?limit=50&offset=0List manufacturers with pagination.
Response Format
All list endpoints return a consistent envelope with pagination metadata.
{
"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