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:
/createTaskCreate a new task to extract TMPT cookies (costs 1 point per task)
domainstringrequiredTarget domain (ticketmaster.com or eticketing.co.uk)
ticketmaster.com, eticketing.co.ukcurl -X POST "https://api.raven-pass.com/createTask" \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"domain": "ticketmaster.com"}'{
"success": true,
"taskId": 123
}/getTaskResult/:idRetrieve the result of a completed task using task ID
curl -X GET "https://api.raven-pass.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)
}/pointsGet your current API points balance
curl -X GET "https://api.raven-pass.com/points" \ -H "X-API-Key: your_api_key"
{
"success": true,
"points": 1500
}400Bad Request - Invalid parameters401Unauthorized - Invalid API key403Forbidden - Insufficient points429Too Many Requests - Rate limit exceeded500Internal Server Error