Recent Threats
get_recent_threatsRetrieve recently published threat intelligence with pagination controls. Use limit, offset, or cursor to page through older threats and identify current security risks.
Instructions
List the most recently published threats. Paginated: pass limit (default 15, max 100) and offset to page through older threats; the result includes has_more and an opaque next_cursor (reusable as offset/cursor).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 15, max 100) | |
| cursor | No | Opaque pagination cursor (next_cursor from a prior result). Decoded to an offset; ignored when offset is given. | |
| offset | No | Row offset for pagination (default 0). Or pass cursor from a prior result. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| total | No | Total matching rows, when the handler reports one. | |
| has_more | No | True when another page may exist. | |
| next_cursor | No | Opaque cursor for the next page, or null when this is the last page or the endpoint ignores offset. |