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": true,
  "format": "html",
  "url": "<string>"
}'
{
  "extracted_links": [
    "extracted_links",
    "extracted_links"
  ],
  "content": "content"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
Scraping request parameters
format
enum<string>
default:markdown
required

The desired output format ("html" or "markdown")

Available options:
html,
markdown
url
string
required

The URL to fetch content from

Whether to include external links (defaults to false)

Whether to include subdomain links (defaults to false)

Whether to extract links from HTML (defaults to false)

Response

200
application/json
OK
content
string

The HTML or Markdown content

Extracted links, omitted if empty or not requested