POST
/
scrape
curl --request POST \
  --url https://www.norns.ai/api/v0/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>"
}'
{
  "success": true,
  "data": {
    "markdown": "<string>",
    "metadata": {
      "title": "<string>",
      "description": "<string>",
      "html": "<string>"
    },
    "scrape_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json
url
string
required

The URL to scrape (must include protocol)

Response

200
application/json
Successful scraping response
success
boolean
data
object