POST
/
crawl
curl --request POST \
  --url https://api.search1api.com/crawl \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>"
}'
{
  "crawlParameters": {
    "url": "<string>"
  },
  "results": {
    "title": "<string>",
    "link": "<string>",
    "content": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
URL for crawling

Crawl a single webpage

url
string
required

The URL to crawl

Response

200
application/json
Successful Response

Response for a single crawl request

crawlParameters
object
results
object