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.
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)
Default
1Range
1 <= valuelimit?integer
Items per page (default: 50, max: 1000)
Default
50Range
1 <= value <= 1000Response 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
}
}