POST
/
scrape
curl --request POST \
  --url https://api.blat.ai/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "allow_external_links": false,
  "allow_subdomain_links": false,
  "extract_links": false,
  "format": "html",
  "url": "https://example.com"
}'
{
  "extracted_links": [
    "extracted_links",
    "extracted_links"
  ],
  "content": "content"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Scraping request parameters

The body is of type object.

Response

200
application/json

OK

The response is of type object.