/monitors (GET)
GET
/monitors
const url = 'https://culipulse.dev/v1/monitors';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://culipulse.dev/v1/monitors \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”List monitors
Media typeapplication/json
object
monitors
required
Array<object>
object
Examplegenerated
{ "monitors": [ {} ]}Unauthorized
Media typeapplication/json
object
error
required
string
request_id
string
Example
{ "error": "not found", "request_id": "req_abc123"}