Skip to main content
GET
/
v1
/
monitors
/
{monitor_id}
Get monitor
curl --request GET \
  --url https://api.signa.so/v1/monitors/{monitor_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "mon_abc123",
  "name": "Tech competitors watch",
  "description": "<string>",
  "watches": [
    {}
  ],
  "offices": [
    "<string>"
  ],
  "webhook_url": "<string>",
  "webhook_events": [
    "<string>"
  ],
  "status": "active",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use your API key from the dashboard. Include it in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Get your API key at https://signa.so/dashboard

Path Parameters

monitor_id
string
required

Monitor ID (e.g., mon_abc123)

Response

Monitor details

id
string
Example:

"mon_abc123"

name
string
Example:

"Tech competitors watch"

description
string
watches
object[]
offices
string[]
webhook_url
string<uri>
webhook_events
string[]
status
enum<string>
Available options:
active,
paused,
error
created_at
string<date-time>
updated_at
string<date-time>