Overview
Introduction
Welcome to the RobotSpeed API documentation. This documentation provides comprehensive guides and reference for integrating your SEO articles with the RobotSpeed platform.
Quick Start
- Get your API Key — Navigate to Settings > API Keys in your RobotSpeed dashboard
- Authenticate — Add the
X-API-Keyheader to your requests - Make API calls — Use the REST endpoints to list and retrieve your articles
Base URL
https://robot-speed.com/api/publicAPI Versions
We currently support one API version:
- v1 — Current recommended API version.
Authentication
API keys start with rs_. Include in the X-API-Key header.
cURL
curl -X GET 'https://robot-speed.com/api/public/articles' \
-H 'X-API-Key: rs_your_api_key_here'Endpoints
GET
/api/public/articlesReturns published articles with pagination.
GET
/api/public/articles/:idReturns a single article with full content, quality metrics, and pipeline steps.
Webhooks
Receive HTTP POST requests when articles are published, updated, or deleted.
| Event | Description |
|---|---|
article.published | New article published |
article.updated | Published article modified |
article.deleted | Article deleted |
Code Examples
Examples available in JavaScript, Python, PHP, and Next.js below.
Error Handling
| Code | Meaning |
|---|---|
200 | Success |
401 | Invalid or missing API key |
403 | Article exists but is not approved/published yet |
404 | Article not found |
500 | Internal server error |