GET
/
batch
/
scrape_sitemap
/
{batch_id}
curl --request GET \
  --url https://api.blat.ai/batch/scrape_sitemap/{batch_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "processed": 0,
  "total": 6,
  "expires_at": "expires_at",
  "data": [
    {
      "metadata": {
        "batch_id": "batch_id",
        "job_id": "job_id",
        "url": "url"
      },
      "success": true,
      "error_code": "error_code",
      "links": [
        "links",
        "links"
      ],
      "error": "error"
    },
    {
      "metadata": {
        "batch_id": "batch_id",
        "job_id": "job_id",
        "url": "url"
      },
      "success": true,
      "error_code": "error_code",
      "links": [
        "links",
        "links"
      ],
      "error": "error"
    }
  ],
  "status": "status"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

batch_id
string
required

Batch ID

Query Parameters

from
integer

Start index for pagination (default: 0)

Body

application/json ยท object

Response

200
application/json

OK

The response is of type object.