Pay-as-you-go API / JSON scraper avatar
Pay-as-you-go API / JSON scraper
Try for free

Pay $25.00 for 1,000 results

View all Actors
Pay-as-you-go API / JSON scraper

Pay-as-you-go API / JSON scraper

pocesar/pay-as-you-go-api-json-scraper
Try for free

Pay $25.00 for 1,000 results

Scrape as pay-as-you-go any API / JSON URLs directly to the dataset, and return them in CSV, XML, HTML, or Excel formats. Transform and filter the output. Enables you to follow pagination recursively from the payload without the need to visit the HTML page.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://blockchain.info/latestblock"
10    }
11  ],
12  "filterMap": "async ({ request, response, addRequest, flattenObjectKeys, context, Apify, _, moment, data, input, customData }) => {\n  return { url: request.url, data };\n}",
13  "handleError": "async ({ error, request, response, addRequest, _, moment, Apify, input, context }) => {\n  \n}",
14  "customData": {},
15  "proxyConfig": {
16    "useApifyProxy": true
17  },
18  "maxRequestRetries": 4
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/pocesar~pay-as-you-go-api-json-scraper/runs?token=$API_TOKEN" \
25  -X POST \
26  -d @input.json \
27  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in Nov 2023
  • Modified 8 months ago