Skip to main content
GET
/
v1
/
monitors
/
{monitor_id}
/
events
List Monitor Events
curl --request GET \
  --url https://api.olostep.com/v1/monitors/{monitor_id}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "run_id": "<string>",
      "created": 123,
      "changed": true,
      "summary": "<string>",
      "snapshot_url": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.olostep.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

monitor_id
string
required

Unique monitor identifier. Must start with monitor_.

Pattern: ^monitor_

Query Parameters

limit
integer
default:25

Page size. Default 25, maximum 100.

Required range: 1 <= x <= 100
cursor
string

Opaque cursor from previous response (next_cursor).

Response

Successful response with event page.

data
object[]
has_more
boolean
next_cursor
string | null