Basic Parameters
| Parameter | Description |
|---|---|
| Filters | A filter parameter that accepts a subset of MongoDB-style queries to filter by. Supported operators may differ based on the field’s data type. Available attributes: value, type, test, active, internalHits, externalHits, expiresAt, source, sharedWith, firstSeen, lastSeen, reputation, commentsFor Example: * Find all indicators with reputation greater than 5 and externalHits more than 10. * Find all indicators that have been shared with “Netskope Partners” configuration.* Not operator is only supported for regex matches.To learn more about building MongoDB queries, please visit MongoDB documentation. |
| Return All Pages | Automatically fetch all resources, page by page. |
Advanced Parameters
| Parameter | Description |
|---|---|
| Aggregate | Select to retrieve indicators in an aggregated form. |
| Ascending Order | Select to retrieve indicators in an ascending order. |
| Limit | The number of results to return per page. |
| Skip | The number of results to initially skip. |
| Sort Field | A field to sort the results by. |
Example Output
[
{
"value": "string",
"type": "url",
"test": true,
"safe": false,
"active": true,
"internalHits": 0,
"externalHits": 0,
"expiresAt": "2025-08-17T09:25:36.774Z",
"source": "string",
"sharedWith": [
"string"
],
"tags": [],
"firstSeen": "2025-08-17T09:25:36.775Z",
"lastSeen": "2025-08-17T09:25:36.775Z",
"reputation": 0,
"severity": "unknown",
"comments": "string",
"extendedInformation": "",
"sources": []
}
]