From 677308aff713b79c7924c942fab208b888e0fc00 Mon Sep 17 00:00:00 2001 From: Antoine Parent Date: Wed, 4 Feb 2026 15:14:24 -0500 Subject: [PATCH 1/2] add 2 query parameters for taxii2 endpoints --- docs/guides/ioc-feeds.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/guides/ioc-feeds.mdx b/docs/guides/ioc-feeds.mdx index 6b08c66..bd5ca9d 100644 --- a/docs/guides/ioc-feeds.mdx +++ b/docs/guides/ioc-feeds.mdx @@ -32,6 +32,14 @@ The intelligence feeds use HTTP Basic Auth, which most TAXII clients support: Obtaining an API key is documented in the [Authentication Guide ](/concepts/authentication). + +## Query Parameters + +| Parameter name | Description | Example | +| -------------- | ----------- | ------- | +| added_after | filter the IOCs that were added after the timestamp | `?added_after=2026-02-04T12:05:00.000Z` | +| limit | restricts the results by the specified amount | `?limit=25` | + ## Code Examples Code examples for connecting to the feeds can be found in this Github repository: From f782cd1e026b53cd807d28b50c4a50a330b11f70 Mon Sep 17 00:00:00 2001 From: Antoine Parent Date: Wed, 4 Feb 2026 16:09:14 -0500 Subject: [PATCH 2/2] rename table title --- docs/guides/ioc-feeds.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/ioc-feeds.mdx b/docs/guides/ioc-feeds.mdx index bd5ca9d..26a61d2 100644 --- a/docs/guides/ioc-feeds.mdx +++ b/docs/guides/ioc-feeds.mdx @@ -35,7 +35,7 @@ Obtaining an API key is documented in the ## Query Parameters -| Parameter name | Description | Example | +| Parameter Name | Description | Example | | -------------- | ----------- | ------- | | added_after | filter the IOCs that were added after the timestamp | `?added_after=2026-02-04T12:05:00.000Z` | | limit | restricts the results by the specified amount | `?limit=25` |