Skip to main content
POST
/
v1
/
monitors
Create monitor
curl --request POST \
  --url https://api.signa.so/v1/monitors \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "watches": [
    {}
  ],
  "webhook_url": "<string>",
  "description": "<string>",
  "offices": [
    "<string>"
  ],
  "webhook_secret": "<string>",
  "webhook_events": [
    "new_filing"
  ]
}
'
{}

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

Body

application/json
name
string
required
watches
object[]
required
webhook_url
string<uri>
required
description
string
offices
string[]
webhook_secret
string
webhook_events
enum<string>[]
Available options:
new_filing,
status_change,
similar_mark_detected,
trademark_published,
trademark_registered,
trademark_opposed,
trademark_cancelled

Response

201 - application/json

Monitor created

The response is of type object.