Create Watchlist
Watchlists
Create Watchlist
Create a new watchlist for ongoing monitoring
POST
Create Watchlist
Endpoint
Authentication
Requireswatchlist:create permission.
Request Body
Webhook URLs and notification emails are configured at the tenant level, not per-watchlist. Contact support to configure your notification channels.
Request Example
Additional Request Examples
Watchlist with Initial Subjects
Watchlist with Alerts
Notification webhooks and emails are configured at the tenant level. The
alert_config only controls when to send alerts, not where.Crypto Wallet Monitoring
Usage Examples
Python
JavaScript
Response
Success Response (201 Created)
Response Fields
| Field | Type | Description |
|---|---|---|
watchlist_id | string | Unique identifier for the watchlist |
tenant_id | string | Your tenant identifier |
name | string | Watchlist name |
subjects | array | List of subjects being monitored |
lists_to_monitor | array | Lists to check against |
check_frequency | string | Screening frequency |
last_checked_at | string/null | Last check timestamp (ISO 8601) |
next_check_due | number/null | Next check timestamp (Unix milliseconds) |
last_results | object/null | Most recent screening results |
alert_config | object | Alert configuration |
status | string | Watchlist status (active or paused) |
created_at | string | Creation timestamp (ISO 8601) |
updated_at | string | Last update timestamp (ISO 8601) |
Error Responses
400 Bad Request
- Missing or empty
namefield - Invalid
check_frequencyvalue - Invalid
lists_to_monitorvalues - Invalid subject data
403 Forbidden
watchlist:create permission.
Subject Fields
When adding subjects during creation:| Field | Type | Required | Description |
|---|---|---|---|
full_name | string | Yes | Full name of the subject |
identifier | string | No | Document ID, wallet address, email, etc. |
identifier_type | string | No | Type: “document”, “wallet”, “email”, “tax_id”, etc. |
tags | array | No | Custom tags for categorization and filtering |
session_id | string | No | Session ID if subject was created during onboarding |
Best Practices
Start Empty, Add Later
Start Empty, Add Later
You can create a watchlist without subjects and add them later using the Add Subjects endpoint. This is useful when setting up infrastructure before onboarding subjects.
Choose the Right Frequency
Choose the Right Frequency
- Daily: High-risk entities, regulatory requirements, active monitoring
- Weekly: Standard monitoring, cost optimization
- On Update: Static lists, manual control, lowest cost
Configure Alerts from Start
Configure Alerts from Start
Set up webhooks and email notifications when creating the watchlist to ensure you don’t miss critical alerts during the first screening cycle.
Select Relevant Lists
Select Relevant Lists
Only monitor lists relevant to your jurisdiction and risk profile:
- US entities: Include
ofac - International: Include
unandeu - Uruguay PEPs: Include
senaclaft_uy
Status Codes
| Code | Description |
|---|---|
| 201 | Created - Watchlist created successfully |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Missing or invalid token |
| 403 | Forbidden - Insufficient permissions |
| 500 | Internal Server Error |
Next Steps
After creating a watchlist:- Add subjects to begin monitoring
- Get watchlist details to verify configuration
- Set up webhook endpoint to receive alerts
- Monitor screening activity with the Usage API