Skip to main content
GET
/
crawl
/
history
List Crawl History
curl --request GET \
  --url https://api.spidra.io/api/crawl/history \
  --header 'x-api-key: <api-key>'
{
  "jobs": [
    {
      "id": "abc-123",
      "base_url": "https://example.com",
      "status": "completed",
      "max_pages": 10,
      "pages_crawled": 8,
      "created_at": "2025-12-17T15:00:00Z",
      "credits_used": 25
    }
  ],
  "total": 15,
  "page": 1,
  "totalPages": 2
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:10
Required range: 1 <= x <= 100

Response

200 - application/json

Paginated list of crawl jobs

jobs
object[]
total
integer
page
integer
totalPages
integer