Temso Docs
API referenceConfiguration

List Monitors

Returns the project's monitors with their settings and tracked models. A monitor defines the collection frequency and the set of AI models prompts are run against.

GET
/projects/{projectId}/monitors

Returns the project's monitors with their settings and tracked models. A monitor defines the collection frequency and the set of AI models prompts are run against.

Path Parameters

projectId*string

Project ID (see List Projects)

Query Parameters

page?integer

Page number (1-indexed, default: 1)

Default1
Range1 <= value
limit?integer

Items per page (default: 50, max: 1000)

Default50
Range1 <= value <= 1000

Response Body

application/json

curl -X GET "https://example.com/projects/string/monitors"
{
  "data": [
    {
      "monitorId": "string",
      "name": "string",
      "description": "string",
      "frequency": "string",
      "isPaused": true,
      "models": [
        "openai/chatgpt",
        "google/ai-overview"
      ],
      "lastRunAt": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  ],
  "pagination": {
    "page": 0,
    "limit": 0,
    "total": 0
  }
}