Skip to main content
GET
/
api
/
v1
/
fetch
/
results
Fetch Results
curl --request GET \
  --url https://api.example.com/api/v1/fetch/results/
{
  "success": true,
  "data": [
    {}
  ],
  "error": {
    "error.code": "<string>",
    "error.message": "<string>"
  }
}

Description

Retrieve your past fetch results. Returns a history of previously fetched URLs with their parsed output, timestamps, and metadata. Useful for reviewing past data without re-fetching.
Token Cost: Free — this endpoint does not consume tokens.

Authentication

This endpoint requires Bearer authentication. Include your API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY

Request

No request body required. Send a GET request to retrieve your fetch history.
curl -X GET https://web-acq.wraithbytes.com/api/v1/fetch/results/ \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

success
boolean
Whether the request completed successfully.
data
array
Array of past fetch results, each containing the original parsed output with timestamps.
error
object
Error details when success is false.

Use Cases

  • Review past fetches — access previously acquired data without re-sending requests
  • Audit trail — see what URLs have been processed and when
  • Cached results — retrieve results from prior fetch calls instantly
  • Historical analysis — compare data changes over time by re-fetching and comparing with stored results