cURL
curl --request POST \
--url http://localhost:4000/v1/indicators/search \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "<string>",
"from": "<string>",
"limit": 2147483647,
"min_confidence": 2147483647,
"protocols": [
"<string>"
],
"query": "<string>"
}
'import requests
url = "http://localhost:4000/v1/indicators/search"
payload = {
"cursor": "<string>",
"from": "<string>",
"limit": 2147483647,
"min_confidence": 2147483647,
"protocols": ["<string>"],
"query": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
cursor: '<string>',
from: '<string>',
limit: 2147483647,
min_confidence: 2147483647,
protocols: ['<string>'],
query: '<string>'
})
};
fetch('http://localhost:4000/v1/indicators/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "4000",
CURLOPT_URL => "http://localhost:4000/v1/indicators/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cursor' => '<string>',
'from' => '<string>',
'limit' => 2147483647,
'min_confidence' => 2147483647,
'protocols' => [
'<string>'
],
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/indicators/search"
payload := strings.NewReader("{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:4000/v1/indicators/search")
.header("Content-Type", "application/json")
.body("{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:4000/v1/indicators/search")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"next_cursor": "<string>",
"objects": [
{}
]
}{
"code": "not_found",
"details": {},
"message": "<string>"
}Indicators
Search Indicators
Search threat indicators with filters for protocol, confidence, sensor type, and time range.
POST
/
v1
/
indicators
/
search
cURL
curl --request POST \
--url http://localhost:4000/v1/indicators/search \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "<string>",
"from": "<string>",
"limit": 2147483647,
"min_confidence": 2147483647,
"protocols": [
"<string>"
],
"query": "<string>"
}
'import requests
url = "http://localhost:4000/v1/indicators/search"
payload = {
"cursor": "<string>",
"from": "<string>",
"limit": 2147483647,
"min_confidence": 2147483647,
"protocols": ["<string>"],
"query": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
cursor: '<string>',
from: '<string>',
limit: 2147483647,
min_confidence: 2147483647,
protocols: ['<string>'],
query: '<string>'
})
};
fetch('http://localhost:4000/v1/indicators/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "4000",
CURLOPT_URL => "http://localhost:4000/v1/indicators/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cursor' => '<string>',
'from' => '<string>',
'limit' => 2147483647,
'min_confidence' => 2147483647,
'protocols' => [
'<string>'
],
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:4000/v1/indicators/search"
payload := strings.NewReader("{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:4000/v1/indicators/search")
.header("Content-Type", "application/json")
.body("{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:4000/v1/indicators/search")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"cursor\": \"<string>\",\n \"from\": \"<string>\",\n \"limit\": 2147483647,\n \"min_confidence\": 2147483647,\n \"protocols\": [\n \"<string>\"\n ],\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"next_cursor": "<string>",
"objects": [
{}
]
}{
"code": "not_found",
"details": {},
"message": "<string>"
}Search enriched and verified indicators available to your API key.
Filters
| Field | Type | Description |
|---|---|---|
protocols | string[] | e.g. PROTOCOL_MODBUS, PROTOCOL_S7 |
sensor_types | string[] | e.g. SENSOR_TYPE_ICS |
min_confidence | integer | Minimum confidence score (0–100) |
created_after | datetime | ISO 8601 lower bound |
created_before | datetime | ISO 8601 upper bound |
Example request
{
"filter": {
"protocols": ["PROTOCOL_MODBUS"],
"min_confidence": 40,
"created_after": "2026-07-01T00:00:00Z"
},
"page_size": 50
}
Authentication
Requires WorkOS JWT or API key withindicators:read scope.
Metering
This endpoint is metered for billing (Stripe). See your plan at reyhford.com/portal.Body
application/json