Token Management
Vault Status
Full status check of your bearer token and proxy. Shows token expiry, proxy info, and rate limits.
GET /api/v1/vault/status
Full status check of your bearer token and proxy. Shows token expiry, proxy info, and rate limits.
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI key |
X-RapidAPI-Host | red-crawler1.p.rapidapi.com |
Example request
cURL
curl -X GET "https://red-crawler1.p.rapidapi.com/api/v1/vault/status" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: red-crawler1.p.rapidapi.com"JavaScript
const res = await fetch("https://red-crawler1.p.rapidapi.com/api/v1/vault/status", {
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
});
const data = await res.json();
console.log(data);Python
import requests
url = "https://red-crawler1.p.rapidapi.com/api/v1/vault/status"
headers = {
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "red-crawler1.p.rapidapi.com"
}
resp = requests.get(url, headers=headers)
print(resp.json())Example response
HTTP 200 — captured from a live call to the gateway.
{
"success": true,
"data": {
"status": "ready",
"message": "Bearer and proxy are set. You are ready to make authenticated API calls.",
"bearer": {
"stored": true,
"token_hint": "...ZWvw",
"expires_at": "2026-04-30T07:47:21.906002+00:00",
"remaining": "22h 48m"
},
"session": {
"stored": false,
"auto_refresh": false
},
"proxy": {
"set": true,
"address": "139.55.17.24:8888",
"changes": 1
}
},
"error": null,
"timestamp": "2026-04-29T08:58:49.530580+00:00"
}