API Documentation

Simple REST API for TMPT cookie extraction. Fast, reliable, and easy to integrate.

Base URL
https://api.raven-pass.com
Authentication

All requests require an API key in the header:

X-API-Key: your_api_key
Rate Limits

Limits based on your plan:

Bronze:1 req/sec
Silver:5 req/sec
Gold:10 req/sec

Endpoints

POST/createTask
Create Task

Create a new task to extract TMPT cookies (costs 1 point per task)

Request

curl -X POST "https://api.ravenpass.com/createTask" \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json"

Response

{
  "success": true,
  "taskId": 123
}
GET/getTaskResult/:id
Get Task Result

Retrieve the result of a completed task using task ID

Request

curl -X GET "https://api.ravenpass.com/getTaskResult/123" \
  -H "X-API-Key: your_api_key"

Response

{
  "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)
}
GET/points
Check Points Balance

Get your current API points balance

Request

curl -X GET "https://api.ravenpass.com/points" \
  -H "X-API-Key: your_api_key"

Response

{
  "success": true,
  "points": 1500
}

Error Codes

400Bad Request - Invalid parameters
401Unauthorized - Invalid API key
403Forbidden - Insufficient points
429Too Many Requests - Rate limit exceeded
500Internal Server Error

Getting Started

Ready to start using the API? Get your API key and begin integrating.