Cross-category pivot across all TeleSint intel
Cross-category pivot across all TeleSint intel. Use ?q= for broad keyword or combine filters: category, severity, sector, country, tag, ttp, name, organization, min_confidence, since. Returns items[] across any category.
40000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-23
updated
Provider
telesint-api.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7F74cE6d34ee0180f0217A16Ce05f3B91272570F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"category": "breach",
"country": "us",
"limit": 20,
"min_confidence": 60,
"offset": 0,
"q": "lockbit",
"sector": "finance",
"severity": "high"
},
"type": "http"
},
"output": {
"example": {
"endpoint": "search",
"items": [
{
"category": "breach",
"channel": "https://t[.]me/cyberinsider",
"confidence": 82,
"id": "s1e2a3r4-c5h6-7890-abcd-search789012",
"iocs": [
{
"context": "Ransomware leak site",
"type": "url",
"value": "https://lockbit3[.]onion/leak/fin-data"
}
],
"severity": "critical",
"summary": "LockBit claims breach of US financial institution — 2.4M records including SSNs and account numbers",
"tags": [
"lockbit",
"ransomware",
"finance",
"data-leak"
],
"tlp": "WHITE",
"ts": "2026-05-27T12:00:00Z",
"ttps": [
{
"id": "T1486",
"name": "Data Encrypted for Impact",
"tactic": "Impact"
}
]
}
],
"limit": 20,
"offset": 0,
"source": "TeleSint",
"total": 12
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"category": {
"description": "Narrow to one category: ioc | c2 | actor | breach | intent | vulnerability",
"type": "string"
},
"country": {
"description": "Target country keyword, e.g. us | uk | de | fr",
"type": "string"
},
"limit": {
"description": "Page size, default 20, max 100",
"type": "number"
},
"min_confidence": {
"description": "Minimum AI confidence score 0-100",
"type": "number"
},
"name": {
"description": "Actor name partial match, e.g. lazarus, sandworm",
"type": "string"
},
"offset": {
"description": "Pagination offset, default 0",
"type": "number"
},
"organization": {
"description": "Target organization name partial match",
"type": "string"
},
"q": {
"description": "Broad keyword search across tags and summaries, e.g. lockbit, lazarus, cve-2026",
"type": "string"
},
"sector": {
"description": "Target sector: finance | healthcare | government | energy | retail",
"type": "string"
},
"severity": {
"description": "Minimum severity: critical | high | medium | low | info",
"type": "string"
},
"since": {
"description": "ISO 8601 timestamp filter, e.g. 2026-05-01T00:00:00Z",
"type": "string"
},
"tag": {
"description": "Tag keyword filter, e.g. ransomware, apt, cobalt-strike",
"type": "string"
},
"ttp": {
"description": "MITRE ATT&CK technique ID prefix, e.g. T1059",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://telesint-api.onrender.com/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://telesint-api.onrender.com/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://telesint-api.onrender.com/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5056.json, and this resource appears in /discovery/resources and /discovery/search.