# TeleSint ASN Threat Intelligence Lookup

> TeleSint ASN Threat Intelligence Lookup is a paid API for AI agents from telesint-api.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Looks up an Autonomous System Number (ASN) against Telegram-sourced cyber threat intelligence, returning threat actors, C2 associations, abuse categories, phishing kits, bulletproof hosting indicators, and blocking recommendations.

## Facts

- Endpoint: GET https://telesint-api.onrender.com/asn
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telesint-asn-threat-intelligence-lookup-58b0919f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BavCSntPtQNa4xq9gYyQo

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-asn-threat-intelligence-lookup-58b0919f
```

Example prompt: Pull TeleSint threat intelligence on ASN AS215540 — I want to know if it's linked to bulletproof hosting, any C2 frameworks like Cobalt Strike, which threat actors are using it, and whether I should block it at the firewall.

## When to prefer this

Use this endpoint when you need Telegram-sourced, community-driven threat intelligence on a specific ASN — especially for identifying bulletproof hosting providers, C2 infrastructure, and phishing-as-a-service networks that may not appear in traditional commercial threat feeds. Prefer this over generic WHOIS or IP reputation services when you want MITRE ATT&CK-tagged, AI-enriched intelligence with real-world attacker attribution and WAF rule generation.

## Known failure modes

- Missing or invalid ASN parameter returns a 400 or error response
- ASN not found in Telegram CTI data returns empty or low-confidence result
- Payment not completed via USDC/x402 returns 402 Payment Required
- Render.com cold start may cause elevated latency on first call
- ASN data may be stale if not recently mentioned in monitored Telegram channels

## How this service works

ASN threat intel from Telegram CTI channels. Pass ?asn=AS215540. Returns C2/phishing-kit associations, threat actor mentions, bulletproof hosting flag, blocking recommendation with WAF hint, and record IDs for pivoting into /c2 or /ioc.

## Output

Returns a structured JSON object containing the ASN and org name, confidence level, data sources, a list of associated threat actors (e.g. Storm-1167, Scattered Spider), C2 framework associations, abuse categories (bulletproof hosting, phishing, C2), phishing kit associations (Tycoon2FA, etc.), a bulletproof hosting boolean indicator, count of Telegram channel mentions, recent Telegram intel record IDs, a WAF rule hint for Cloudflare/AWS WAF, a blocking recommendation, and freshness timestamp — all enriched by DeepSeek with MITRE ATT&CK tagging.

## 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",
     "required": [
      "asn"
     ],
     "properties": {
      "asn": {
       "type": "string",
       "description": "ASN identifier e.g. AS215540, AS9009, AS14061"
      },
      "org": {
       "type": "string",
       "description": "Optional org name fragment e.g. hivelocity, digitalocean, m247"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asn": "AS215540",
  "source": "TeleSint",
  "org_name": "GLOBAL CONNECTIVITY SOLUTIONS LLP",
  "freshness": "2026-06-19T10:00:00Z",
  "confidence": "high",
  "data_sources": [
   "TeleSint-Telegram-CTI",
   "DeepSeek-CTI-Analysis"
  ],
  "threat_actors": [
   "Storm-1167",
   "scattered spider"
  ],
  "waf_rule_hint": "Cloudflare WAF: ASN 215540 | AWS WAF AsnMatchStatement: [215540]",
  "c2_associations": [
   "Cobalt Strike",
   "Havoc"
  ],
  "abuse_categories": [
   "bulletproof_hosting",
   "phishing",
   "c2"
  ],
  "telegram_mentions": 14,
  "bulletproof_indicator": true,
  "recent_telegram_intel": [
   "f8a3c1d2-4b5e-4f6a-9c8d-1e2f3a4b5c6d"
  ],
  "blocking_recommendation": "BLOCK — repeatedly mentioned in Telegram CTI as preferred C2 and AiTM hosting provider",
  "phishing_kit_associations": [
   "Tycoon2FA",
   "NakedPages",
   "Sneaky2FA"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telesint-asn-threat-intelligence-lookup-58b0919f/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)
