Search1API
Basic

Crawl

API endpoint for crawling webpage content

POST
/crawl

Authorization

AuthorizationRequiredBearer <token>

In: header

Request Body

application/jsonRequired

URL for crawling

bodyRequiredSingle Crawl | Batch Crawl

Response Body

Successful Response

TypeScript Definitions

Use the response body type in TypeScript.

responseRequiredSingle Crawl Response | Batch Crawl Response
curl -X POST "https://api.search1api.com/crawl" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://search1api.com"
  }'
{
  "crawlParameters": {
    "url": "https://search1api.com"
  },
  "results": {
    "title": "string",
    "link": "string",
    "content": "string"
  }
}