# TeleSint Pre-Attack Intent Signals API

> TeleSint Pre-Attack Intent Signals API is a paid API for AI agents from telesint-api.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves pre-attack intent signals from Telegram channels, including access sales, zero-day listings, ransomware targeting, and exploit discussions, before attacks materialize.

## Facts

- Endpoint: GET https://telesint-api.onrender.com/intent
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telesint-api-onrender-com-c2adaec8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4SsyXW2iPKe6nfsyffG_z

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability telesint-api-onrender-com-c2adaec8
```

Example prompt: Pull the latest pre-attack intent signals from Telegram for the healthcare sector in the US — specifically access_sale and ransomware intent types, limit to 20 results — I want to see if anyone is targeting hospital organizations before anything goes live.

## When to prefer this

Use this endpoint when you need early warning signals specifically sourced from Telegram channels about imminent cyberattacks, access sales, or ransomware targeting — before attacks are publicly reported. Prefer this over generic threat feeds when you want pre-attack intelligence with Telegram-sourced provenance and need to filter by sector, geography, or specific intent type like 0day or ransomware.

## Known failure modes

- No signals found matching the specified filters — returns empty results list
- Invalid intent_type enum value causes a 400 bad request error
- Rate limiting or payment failure results in 402 or 429 response
- Service temporarily unavailable on Render.com free tier cold start — returns 503
- Unrecognized country or sector value may return empty or unfiltered results

## How this service works

Pre-attack intent signals from Telegram: access sales, 0days, ransomware targeting. Filters: sector, country, organization, intent_type(access_sale|0day|ransomware|exploit), limit. Signals appear before attacks.

## Output

Returns a list of intent signal items sourced from Telegram CTI channels, each describing a pre-attack indicator such as an access sale, zero-day listing, ransomware targeting announcement, or exploit discussion, filtered by the requested sector, country, organization, and intent type.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "description": "Page size, default 20, max 100"
      },
      "offset": {
       "type": "number",
       "description": "Pagination offset, default 0"
      },
      "sector": {
       "type": "string",
       "description": "Targeted sector: finance | healthcare | government | energy | retail"
      },
      "country": {
       "type": "string",
       "description": "Targeted country keyword, e.g. us | uk | de | fr"
      },
      "intent_type": {
       "type": "string",
       "description": "Signal type: access_sale | 0day | ransomware | exploit | recruitment"
      },
      "organization": {
       "type": "string",
       "description": "Targeted organization name partial match"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "id": "i1n2t3e4-n5t6-7890-abcd-intent789012",
    "ts": "2026-05-27T07:22:00Z",
    "tlp": "WHITE",
    "iocs": [
     {
      "type": "url",
      "value": "https://exploit[.]in/threads/healthcare-access",
      "context": "Access sale listing"
     }
    ],
    "tags": [
     "access-sale",
     "healthcare",
     "vpn",
     "initial-access-broker"
    ],
    "ttps": [
     {
      "id": "T1078",
      "name": "Valid Accounts",
      "tactic": "Initial Access"
     },
     {
      "id": "T1110",
      "name": "Brute Force",
      "tactic": "Credential Access"
     }
    ],
    "target": {
     "sectors": [
      "healthcare"
     ],
     "countries": [
      "US"
     ],
     "organizations": []
    },
    "channel": "https://t[.]me/ctifeeds",
    "summary": "Threat actor selling VPN access to US healthcare network: 5,000 employee credentials, domain admin included",
    "category": "intent",
    "severity": "critical",
    "confidence": 72
   }
  ],
  "limit": 20,
  "total": 3,
  "offset": 0,
  "source": "TeleSint",
  "endpoint": "intent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telesint-api-onrender-com-c2adaec8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from telesint-api.onrender.com](https://www.zero.xyz/host/telesint-api.onrender.com/llms.txt)
