Skip to main content
GET
/
scrape-logs
/
{uuid}
Get Scrape Log Details
curl --request GET \
  --url https://api.spidra.io/api/scrape-logs/{uuid} \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "data": {
    "uuid": "log-uuid-1",
    "status": "success",
    "started_at": "2025-06-07T15:00:00Z",
    "finished_at": "2025-06-07T15:00:05Z",
    "urls": [
      {
        "url": "https://example.com"
      }
    ],
    "extraction_prompt": "Get the main content",
    "tokens_used": 1500,
    "result_data": {
      "title": "Example Domain",
      "content": "This domain is for examples."
    }
  }
}
This endpoint includes result_data with the full scraped content.

Authorizations

x-api-key
string
header
required

Path Parameters

uuid
string
required

UUID of the scrape log

Response

Full scrape log details

status
enum<string>
Available options:
success
data
object

Full scrape log details including result data