Simple REST API for TMPT cookie extraction. Fast, reliable, and easy to integrate.
All requests require an API key in the header:
Limits based on your plan:
/createTask
Create a new task to extract TMPT cookies (costs 1 point per task)
curl -X POST "https://api.ravenpass.com/createTask" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json"
{ "success": true, "taskId": 123 }
/getTaskResult/:id
Retrieve the result of a completed task using task ID
curl -X GET "https://api.ravenpass.com/getTaskResult/123" \ -H "X-API-Key: your_api_key"
{ "success": true, "result": { "status": "completed", "cookie": "tmpt:0:1234...", }, "status": "COMPLETED", "createdAt": "2025-08-27T10:25:00.000Z", "updatedAt": "2025-08-27T10:27:00.000Z", "timeTook": 1412 (milliseconds) }
/points
Get your current API points balance
curl -X GET "https://api.ravenpass.com/points" \ -H "X-API-Key: your_api_key"
{ "success": true, "points": 1500 }
400
Bad Request - Invalid parameters401
Unauthorized - Invalid API key403
Forbidden - Insufficient points429
Too Many Requests - Rate limit exceeded500
Internal Server Error