Docs
Crawling

Get errors for a crawl job

GET/crawl/{id}/errors
AuthorizationBearer <token>

Enter your API key with the bc_ prefix

In: header

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://example.com/crawl/string/errors"
{  "success": true,  "data": {    "id": "crawl_uuid",    "errors": [      {        "url": "https://example.com/page1",        "error": "Timeout exceeded"      }    ]  }}
Empty