We are sunsetting our office from Canada and shifting to Hong Kong. Stay connected for latest updates; physical meetings will resume soon.
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"
}