cURL
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>" } }
Crawls a webpage
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
URL for crawling
Crawl a single webpage
The URL to crawl
Successful Response
Response for a single crawl request
Show child attributes
The title of the crawled webpage
The link of the crawled webpage
The content of the crawled webpage