Skip to main content
POST
/
v1
/
tools
/
web
/
crawl
Crawl URLs
curl --request POST \
  --url https://api.sierra.absconsulting.com/v1/tools/web/crawl \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "urls": [
    "https://example.com",
    "https://example.org"
  ]
}
'
{
  "result": "<unknown>"
}

Authorizations

Api-Key
string
header
required

Access the API as yourself. You can find your API key in your profile menu in Portal.

Body

application/json

The URLs to crawl.

urls
string[]
required

The URLs to crawl.

Minimum array length: 1
Example:
[
"https://example.com",
"https://example.org"
]

Response

OK

result
any