List bulk job items

GET
/v1/bulk/{id}/screenshots

Authorization

AuthorizationRequiredBearer <token>

API key. Manage keys from the dashboard at app.bytekit.com.

In: header

Path Parameters

idRequiredstring
Pattern: "^bulk_"
curl https://api.bytekit.com/v1/bulk/{id}/screenshots \
  -H "Authorization: Bearer sk_live_your_api_key_here"

Successful response.

{
  "bulk_id": "bulk_01j9abc123",
  "total": 0,
  "items": [
    {
      "type": "screenshot",
      "id": "string",
      "status": "pending",
      "url": "http://example.com",
      "credits_charged": 0,
      "error_code": "string",
      "error_message": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "completed_at": "2019-08-24T14:15:22Z",
      "image_url": "string",
      "page_title": "string",
      "format": "string",
      "video_url": "string",
      "content_url": "string",
      "content_type": "string",
      "content_length": 0,
      "markdown": "string",
      "markdown_url": "string"
    }
  ]
}