Skip to main content
GET
/
public
/
v1
/
signal-categories
List custom signal categories
curl --request GET \
  --url http://app.stairoids.com/api/public/v1/signal-categories \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 2,
    "name": "Website intent",
    "description": "<string>",
    "score": 10
  }
]

Authorizations

X-Api-Key
string
header
required

Your organization's public API key. Manage it at GET /api/user/public-api-key.

Response

OK

id
integer<int64>

Category id.

Example:

2

name
string

Category name.

Example:

"Website intent"

description
string | null

Category description.

score
integer<int32> | null

Score contribution for signals in this category.

Example:

10