Skip to content

How to export data?

Learn how to download and export your scraped data from CoreClaw.

  1. Go to Runs in the console
  2. Click on the Run ID
  3. Wait for status to show “SUCCEEDED”

On the run details page, you can see:

  • Execution status
  • Number of items scraped
  • Execution duration
  • Log records

Choose your preferred format:

FormatExtensionBest For
JSON.jsonDevelopers, API integration
CSV.csvSpreadsheets, analysis

Click the format button to download your data.

For automated data retrieval, use the API:

Terminal window
GET /api/v1/runs/{run_slug}/results
Terminal window
POST /api/v1/runs/{run_slug}/export

Request Body:

{
"format": "csv",
"filter_keys": "title,price,url"
}

Supported formats: csv, json

See Export API for full documentation.

SizeRecommended Method
< 10MBConsole download
10MB - 100MBAPI streaming
> 100MBContact support

Possible reasons:

  • Run has not completed yet
  • No data was scraped
  • Insufficient account balance
  • Limited permissions

Solution: Refresh the page or check run status.

Check the following:

  • Input parameters are correct
  • Target website is accessible
  • Anti-scraping measures are not blocking

Review the logs for detailed error messages.