latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Exclusion Lists

Add excluded domains

Adds one or more domains to the user's exclusion list. If list_id is provided, domains are added to that specific list. For large batches (>50 domains), the first 50 are processed immediately and the rest are queued for background processing.

post/api/intellimatch/domains

Request body

domainsstring[] required

Array of domain names to exclude (max 10000).

list_idinteger

Optional list ID to add domains to. If not provided, domains are added as global exclusions.

Example request

{
  "domains": [
    "competitor.com",
    "blocked.io"
  ],
  "list_id": 1
}

Response

Ok

successboolean
totalinteger
processed_immediatelyinteger
queuedinteger
list_idinteger

Example response

{
  "success": true,
  "total": 150,
  "processed_immediately": 50,
  "queued": 100,
  "list_id": 1
}