Open Paws API
  • Documentation
  • API Reference
  • Pricing
  • Resources
System
    Health Checkget
Search
    Search all tablespostSearch a single tablepost
OSINT
    Generate Personal OSINT ProfilepostInvestigate Companypost
Content
    Generate Advocacy Contentpost
Chat
    Send Chat MessagepostDetect Message Intentpost
Legal
    Get Legal Guidancepost
Tracking
    Set Up Issue Trackingpost
Knowledge
    Semantic Knowledge Searchpost
Webhooks
    Clerk Webhook Handlerpost
Schemas
powered by Zudoku
Open Paws API
Open Paws API

Tracking

Endpointhttps://api.openpaws.ai

Issue monitoring and tracking endpoints


Set Up Issue Tracking

POST
https://api.openpaws.ai
/tracking/issues

Set up automated monitoring for animal advocacy issues and topics. Returns an immediate confirmation. Updates are delivered via email at the specified frequency.

Set Up Issue Tracking › Headers

Authorization
string · required

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Set Up Issue Tracking › Request Body

topics
string[]

Topic IDs to track

frequency
string · enum

How often to receive updates

Enum values:
daily
weekly
realtime
Default: weekly
customKeywords
string[]

Custom keywords to monitor

specificInterests
string · maxLength: 1000

Additional context about tracking interests

Set Up Issue Tracking › Responses

Tracking setup confirmation

taskId
string · uuid

Unique identifier for the async task

message
string

Human-readable confirmation message

estimatedTime
string

Estimated time for completion

taskType
string

Type of task that was started

POST/tracking/issues
curl --request POST \
  --url https://api.openpaws.ai/tracking/issues \
  --header 'Authorization: <string>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "topics": [
    "string"
  ],
  "frequency": "daily",
  "customKeywords": [
    "string"
  ],
  "specificInterests": "specificInterests"
}
'
shell
Example Request Body
{
  "topics": [
    "string"
  ],
  "frequency": "daily",
  "customKeywords": [
    "string"
  ],
  "specificInterests": "specificInterests"
}
json
Example Responses
{
  "taskId": "00000000-0000-0000-0000-000000000000",
  "message": "message",
  "estimatedTime": "estimatedTime",
  "taskType": "taskType"
}
json
application/json

LegalKnowledge