curl --request GET \
--url https://api.open.cx/blocklist/domains \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"domain": "<string>",
"reason": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"total_pages": 123
}List all blocked email domains. Messages from contacts with emails on blocked domains are ignored by the AI.
curl --request GET \
--url https://api.open.cx/blocklist/domains \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"domain": "<string>",
"reason": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"page": 123,
"total_pages": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number (default: 1)
Results per page (default: 20)
Was this page helpful?