Developer Docs
Developer API Hub
Integrate Reworkd's scraper endpoints directly into your python model pretraining notebooks.
API Key Authentication
Authenticate request packets by including your Reworkd workspace secret key in the Authorization header metadata.
• Never share keys in client-side codebases.
• Rotate credentials if leaked on public logs.
status: active production route
Mock Request Console
cURL Connection:
curl -X POST https://api.reworkd.ai/v1/auth \
-H "Authorization: Bearer REWORKD_SECRET_KEY"Python SDK Integration:
import requests
headers = {
"Authorization": "Bearer REWORKD_SECRET_KEY"
}
response = requests.post("https://api.reworkd.ai/v1/auth", headers=headers)
print(response.json())JSON Response Output:
{
"status": "authorized",
"workspace_id": "ws_942084",
"remaining_tokens": "842.1M"
}