Skip to main content
GET
/
monitors
List monitors
curl --request GET \
  --url https://api.trymaitai.ai/api/v1/monitors \
  --header 'X-Maitai-Api-Key: <api-key>'
{
  "data": [
    {
      "id": 501,
      "name": "Order intake completeness",
      "description": "Catches order intents that miss customer_id or order_total.",
      "status": "ACTIVE",
      "target_count": 2,
      "active": true,
      "has_unpublished_changes": false,
      "latest_version_number": "1.2.0",
      "last_run_at": 1737550000000,
      "date_created": 1735000000000
    }
  ],
  "pagination": {
    "total": 8,
    "offset": 0,
    "limit": 25
  }
}

Documentation Index

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

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

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Query Parameters

status
string

Filter by status (can be specified multiple times).

offset
integer
default:0

Number of items to skip.

Required range: x >= 0
limit
integer
default:25

Maximum number of items to return.

Required range: 1 <= x <= 100

Response

200 - application/json

Paginated results.

data
any[]
pagination
object