curl --request GET \
--url https://api.open.cx/blocklist/domains/check \
--header 'Authorization: Bearer <token>'{
"is_blocked": true
}Check whether a domain is blocked. You can pass either a bare domain (e.g. “spam.com”) or a full email (e.g. “[email protected]”) — the domain will be extracted automatically.
curl --request GET \
--url https://api.open.cx/blocklist/domains/check \
--header 'Authorization: Bearer <token>'{
"is_blocked": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A domain (e.g. "spam.com") or email (e.g. "[email protected]")
Default Response
Was this page helpful?