---
name: check-recent
type: instructions
description: Query recent phishing detections since a given date.
---

# Check recent phishing detections

## Purpose
Retrieve phishing domains detected since a specific date. Useful for daily/hourly
threat-intel syncs, so agents only pull deltas instead of the full feed.

## Endpoint
```
GET https://phishunt.io/api/v1/domains?since=<YYYY-MM-DD>&limit=<n>
```

## Parameters
- `since` — ISO date (e.g. `2026-04-18`).
- `limit` — 1-1000 (default 100).
- `offset` — pagination offset (0-10000).
- `company` — optional brand filter.
- `format` — `json` | `txt` | `csv`.

## Pagination
If `count == limit`, there may be more results. Increment `offset` by `limit` and re-query
until `count < limit`. Max offset is 10000; beyond that use `since` with a later date.

## Example
```bash
curl -sf 'https://phishunt.io/api/v1/domains?since=2026-04-18&limit=1000' | jq '.count'
```
