Every scraping endpoint runs on an API key. The endpoints on this page require a **session

cookie** unless stated otherwise.

Creating API key

curl -X POST https://api.jetscrape.com/api/users/create-api-keys \
  -H "Content-Type: application/json" \
  -b cookies.txt \
  -d '{
    "name": "My Scraper Key",
    "prefix": "js_"
  }
{
  "id": "key_abc123",
  "name": "My Scraper Key",
  "key": "js_abc123xyz...",
  "remaining": 1000,
  "createdAt": "2025-06-01T10:00:00.000Z",
  "expiresAt": null
}

Last updated: September 21, 2026