latestOpenAPI 3.0.32026-08-08360156.4 KB
ae7fddf16bf9
Exclusion Lists
Get excluded domains
Returns a paginated list of excluded domains for the authenticated user.
Can be filtered by list_id to get domains from a specific list, otherwise returns the global exclusion list.
get/api/intellimatch/domains
Query parameters
querystring
Search query to filter domains.
Example:example.com
Search query to filter domains.
list_idinteger
Filter domains by list ID.
Example:1
Filter domains by list ID.
per_pageinteger
Number of domains per page.
Example:15
Number of domains per page.
pageinteger
Page number.
Example:1
Page number.
Response
Ok
Example response
{
"data": [
{
"id": 1,
"domain": "competitor.com",
"excluded_domain_list_id": 1
},
{
"id": 2,
"domain": "blocked.io",
"excluded_domain_list_id": null
}
],
"current_page": 1,
"per_page": 15,
"total": 150
}