Overview
This RESTful API is to fetch multiple IOC details from the Seqrite Threat Intel.
Method
POST
Base URL
Portal URL
Request URL/End Point
Portal URL/api/search/ioc/bulk
Authentication
Header
- Key: Authorization
- Value: Bearer (User API key)
Maximum Limit
Maximum IOCs per request: 1000
Table of Parameters/Response Parameters
| Entity | Field Name | Data Type |
| Indicator | ||
| id | uuid | |
| name | string | |
| valid_from | date | |
| valid_until | date | |
| modified | date | |
| score | int | |
| confidence | int | |
| Labels | string | |
| indicator_type | string | |
| indicator_category | string | |
| pattern_type | string | |
| description | string | |
| revoke | boolean | |
Sample Request
{
“indicators”: [
“166.137.146.79”,
“179.189.47.242”,
“186.247.90.193”,
“189.250.184.38”,
“https://minert.pro/”,
“3A4A084376ABFAA127233660B962922E”,
“xinlan14.cc/video/view/c0b0b081518fa6987031”,
“av-com.com”
] }
Sample Response
Note: This is a sample response. The actual response may vary post-implementation.
{
“totalRequested”: 8,
“totalFound”: 7,
“totalNotFound”: 1,
“data”: [
{
“id”: “7cea4a8f-881d-49a2-8a20-6d730c22cab7”,
“name”: “166.137.146.79”,
“description”: “Attacks on the service Mail, Postfix.”,
“valid_from”: “2026-05-31T00:10:22.089Z”,
“valid_until”: “2026-06-20T05:45:01.523Z”,
“modified”: “2026-06-20T05:46:40.857Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“mail”
],
“indicator_categories”: null,
“indicator_type”: “IPv4-Addr”,
“pattern_type”: “stix”,
“revoked”: true
},
{
“id”: “ffc90b91-2137-436f-bbcf-2f4390892298”,
“name”: “179.189.47.242”,
“description”: “Attacks on the service Mail, Postfix.”,
“valid_from”: “2026-03-31T06:51:46.000Z”,
“valid_until”: “2026-04-22T04:38:14.592Z”,
“modified”: “2026-04-22T04:38:35.238Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“mail”
],
“indicator_categories”: null,
“indicator_type”: “IPv4-Addr”,
“pattern_type”: “stix”,
“revoked”: true
},
{
“id”: “d08eb0e6-44e6-46d4-b758-d99cfd7e39e1”,
“name”: “186.247.90.193”,
“description”: “Attacks on the service Mail, Postfix.”,
“valid_from”: “2026-03-31T05:50:50.000Z”,
“valid_until”: “2026-04-22T03:37:18.592Z”,
“modified”: “2026-04-22T03:37:21.799Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“mail”
],
“indicator_categories”: null,
“indicator_type”: “IPv4-Addr”,
“pattern_type”: “stix”,
“revoked”: true
},
{
“id”: “52c15f6a-3399-479e-a496-ad04b12e146a”,
“name”: “189.250.184.38”,
“description”: “Attacks on the service Mail, Postfix.”,
“valid_from”: “2026-03-31T06:51:46.000Z”,
“valid_until”: “2026-04-22T04:38:14.592Z”,
“modified”: “2026-04-22T04:38:52.373Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“mail”
],
“indicator_categories”: null,
“indicator_type”: “IPv4-Addr”,
“pattern_type”: “stix”,
“revoked”: true
},
{
“id”: “1a4d41b2-185f-40d2-90dc-ded2174cec83”,
“name”: “https://minert.pro/”,
“description”: “Simple indicator of observable { https://minert.pro/ }”,
“valid_from”: “2026-06-09T05:23:04.000Z”,
“valid_until”: “2026-07-05T03:07:44.592Z”,
“modified”: “2026-07-05T13:44:54.653Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“sector-legal & professional services”
],
“indicator_categories”: [
“malicious-activity”
],
“indicator_type”: “Url”,
“pattern_type”: “stix”,
“revoked”: true
},
{
“id”: “da365998-eb37-43dc-9d96-bb340aca71c2”,
“name”: “3A4A084376ABFAA127233660B962922E”,
“description”: “Simple indicator of observable { 3A4A084376ABFAA127233660B962922E }”,
“valid_from”: “2026-06-09T03:46:30.000Z”,
“valid_until”: “2028-04-29T04:33:49.805Z”,
“modified”: “2026-06-09T04:37:32.972Z”,
“score”: 76,
“confidence”: 100,
“labels”: [
“sector-financial services”
],
“indicator_categories”: [
“malicious-activity”
],
“indicator_type”: “StixFile”,
“pattern_type”: “stix”,
“revoked”: false
},
{
“id”: “64420a23-220f-4f7a-9137-64945c246c3b”,
“name”: “xinlan14.cc/video/view/c0b0b081518fa6987031”,
“description”: “Simple indicator of observable { xinlan14.cc/video/view/c0b0b081518fa6987031 }”,
“valid_from”: “2026-06-08T21:15:14.000Z”,
“valid_until”: “2026-07-04T18:59:54.592Z”,
“modified”: “2026-07-05T12:21:24.026Z”,
“score”: 20,
“confidence”: 100,
“labels”: [
“sector-construction & real estate”
],
“indicator_categories”: [
“malicious-activity”
],
“indicator_type”: “Url”,
“pattern_type”: “stix”,
“revoked”: true
}
],
“notFound”: [
“av-com.com”
] }