Skip to main content
POST
/
api
/
client
/
v2
/
monitored-topics
Create Monitored Topic
curl --request POST \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/client/v2/monitored-topics \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "AI agents",
  "description": "<string>",
  "ownerId": "8d256aa6-9b12-49a7-93ee-bf41634b5b60"
}
'
{
  "status": "success",
  "data": {
    "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60"
  },
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Body

application/json
name
string
required

Short topic name.

Minimum string length: 1
Example:

"AI agents"

description
string
required

Describe what makes a post qualify for this topic — what it should be about, and what should be excluded. Used by the AI matcher when scanning posts.

Minimum string length: 1
ownerId
string<uuid>
required

ID of the user this Monitored Topic will belong to.

Example:

"8d256aa6-9b12-49a7-93ee-bf41634b5b60"

Response

status
enum<string>
required

Response status

Available options:
success
data
object
required
message
string
required

Success message

Example:

"Operation completed successfully"