Skip to main content
POST
/
crawl
/
raw
Raw Crawl
curl --request POST \
  --url https://api.crawlkit.com/v1/crawl/raw \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "options": {
    "mode": "html",
    "timeout": 30000,
    "headers": {},
    "followRedirects": true,
    "maxRedirects": 5,
    "waitForSelector": "<string>",
    "actions": [
      {
        "type": "wait",
        "milliseconds": 15050
      }
    ]
  }
}
'
{
  "success": false,
  "error": {
    "code": "<string>",
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)

Body

application/json
url
string<uri>
required

URL to crawl

options
object

Response

Default Response

success
enum<boolean>
required
Available options:
true,
false
error
object
required