---
title: "Get Scrape History"
method: GET
path: "/v1/history/scrape"
tags: ["History"]
---

# Get Scrape History

`GET /v1/history/scrape`

Get paginated history of scrape requests.

Args:
    request: The FastAPI request object
    page: Page number (default: 1)
    page_size: Number of items per page (default: 10)

Returns:
    ScrapeHistoryResponse containing the list of requests and next page key

## Query parameters

- `page` integer
- `page_size` integer

## Request body

- object, nullable

## Response `200`

Successful Response

- ScrapeHistoryResponse
  - `requests` ScrapeRequestDB[], required
    - `request_id` string, uuid, required
    - `user_id` string, uuid, nullable
    - `website_url` string, required
    - `render_heavy_js` boolean
    - `result` string, nullable
    - `status` 'queued' | 'processing' | 'completed' | 'failed' — Status of a scrape request.
    - `metadata` object
    - `error` string, nullable
    - `finished_at` string, date-time, nullable
    - `requested_at` string, date-time
    - `cost` integer
    - `request_params` object, nullable
  - `next_key` object, nullable, required

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-02** `17bc5b01fe0c` — 1 info
  - the `requested_at` response's property default value changed from `2026-09-01T16:00:52.661284` to `2026-09-02T12:49:42.480780` for the status `200`

[Change history](https://skmtc.dev/scrapegraphai/apis/fastapi/changes/v1/history/scrape/get.md)

---

[API](https://skmtc.dev/scrapegraphai/apis/fastapi.md) · [All operations](https://skmtc.dev/scrapegraphai/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/scrapegraphai/fastapi/revisions/17bc5b01fe0c/schema)
