/reports/{id}
GET
/reports/{id}
const url = 'https://culipulse.dev/v1/reports/mon_123';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/reports/mon_123 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Example
mon_123Responses
Section titled “Responses”Report detail
Media typeapplication/json
object
Examplegenerated
{}Unauthorized
Media typeapplication/json
object
error
required
string
request_id
string
Example
{ "error": "not found", "request_id": "req_abc123"}Not found
Media typeapplication/json
object
error
required
string
request_id
string
Example
{ "error": "not found", "request_id": "req_abc123"}