List monitor captures

GET
/v1/monitors/{id}/captures

Authorization

AuthorizationRequiredBearer <token>

API key. Obtain from POST /v1/account/api-keys.

In: header

Path Parameters

idRequiredstring

Query Parameters

limitinteger
Default: 25Minimum: 1Maximum: 100
cursorstring

Pagination cursor from a previous response.

curl -X GET "https://api.bytekit.com/v1/monitors/string/captures?cursor=string" \
  -H "Authorization: Bearer <token>"

Successful response.

{
  "data": [
    {
      "id": "string",
      "monitor_id": "string",
      "screenshot_id": "string",
      "scrape_id": "string",
      "image_url": "string",
      "content_hash": "string",
      "previous_hash": "string",
      "hash_distance": 0,
      "change_pct": "string",
      "has_change": true,
      "title_changed": true,
      "outcome": "captured",
      "captured_at": "2019-08-24T14:15:22Z"
    }
  ],
  "next_cursor": "string",
  "has_more": true
}