v1
latestOpenAPI 3.0.02026-07-24311994.6 KBThreat Feeds
ClickFix Site Feed
Cursor-paginated, filterable, multi-sortable feed of ClickFix sites. Requires the clickfix api permission. Uses keyset (cursor) pagination: pass pageInfo.nextCursor back as cursor for the next page. Each row is a full record including the base64 screenshot blobs, so limit is capped at 20 (default 20). Boolean filters are opt-in (only true filters); query is a case-insensitive match over domain/url/pageTitle.
post/threat-feeds/clickfix
Request body
Example request
{
"dateFrom": "2026-01-01",
"dateTo": "2026-01-31"
}Response
Successful operation
Example response
{
"data": [
{
"_id": "665f1a2b3c4d5e6f7a8b9c0d",
"domain": "clickfix-example.com",
"url": "https://clickfix-example.com/verify",
"timestamp": "2026-01-31T10:15:00.000Z",
"clipboardHijacked": true,
"malicious": true,
"isCompromised": true,
"pageTitle": "Verify you are human",
"metadata": {
"ip": "203.0.113.10",
"country": "US",
"asn": 64500,
"server": "nginx"
}
}
],
"pageInfo": {
"limit": 50,
"count": 50,
"hasMore": true,
"nextCursor": "eyJzIjoiZGF0ZSIsImQiOiJkZXNjIiwidiI6MTc2ODQ3ODQwMDAwMH0",
"total": 12034,
"sort": {
"key": "date",
"dir": "desc"
}
}
}