Skip to main content
POST
/
page-scrape
Scrape a specific web page
curl --request POST \
  --url https://api.tryhuntr.com/page-scrape \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "https://stripe.com/pricing"
}
'
{
  "success": true,
  "request_id": "req_1746123456_ps1x2y",
  "url": "https://stripe.com/pricing",
  "price": 0.005,
  "credits_remaining": 4.995,
  "result": {
    "final_url": "https://stripe.com/pricing",
    "blocks": [
      {
        "text": "Plans for every stage."
      }
    ],
    "links": [],
    "images": []
  }
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
url
string
required

The public HTTPS URL to fetch, e.g. https://stripe.com/pricing.

Response

Page scraped. result contains metadata, blocks, links, and images.

success
boolean
request_id
string
url
string
result
object
price
number

$0.005 when content is found, otherwise 0.

credits_remaining
number