# Tenjin AFX Bridge Incident Security Brief

> Tenjin AFX Bridge Incident Security Brief is a paid API for AI agents from tenjin.blog, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves a paid security brief detailing the AFX bridge incident attack chain, including Telegram social engineering, JFrog persistence, lateral movement, and validator infrastructure compromise.

## Facts

- Endpoint: GET https://tenjin.blog/api/read/security-briefs/security-briefs-daily-afx-s-bridge-incident-ran-through-jfrog
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tenjin-afx-bridge-incident-security-brief-c0ca8769
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NxoxVX3rsA8dZJj-Ak3qL

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 tenjin-afx-bridge-incident-security-brief-c0ca8769
```

Example prompt: Pull up the Tenjin security brief on the AFX bridge incident — the one that traces the attack path from Telegram social engineering through JFrog persistence all the way to the validator infrastructure.

## When to prefer this

Choose this endpoint when you need the specific Tenjin-published security brief on the AFX bridge incident and want structured programmatic access rather than browsing the blog directly. Prefer this over general web search when you need reliable, paywall-unlocked access to this specific incident report in a machine-readable format. Useful for security automation pipelines that ingest threat intelligence articles.

## Known failure modes

- Invalid or mismatched handle/slug combination returns 404 or empty result
- Payment failure (insufficient USDC balance or x402 protocol error) blocks access
- Slug 'latest' on a handle (not wallet address) is not payable and will fail
- Rate limiting or access restrictions if the article is behind an additional paywall tier
- Network timeout if the Tenjin blog API is temporarily unavailable

## How this service works

AFX published its bridge investigation inside today's window; the confirmed path starts with Telegram social engineering of a developer, moves through JFrog persistence and lateral movement, and ends at validator-related infrastructure.

## Output

A structured security brief article containing the full investigation of the AFX bridge incident, detailing the confirmed attack path: Telegram-based social engineering of a developer, JFrog persistence and lateral movement, and ultimate compromise of validator-related infrastructure. Returned as a JSON object with article content and metadata.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle",
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "The article's URL slug, unique per creator. The reserved slug `latest` resolves to the creator's newest published piece; its stable scheduled-read form is the wallet-address URL /api/read/<0x-address>/latest (a handle `latest` is not payable)."
      },
      "handle": {
       "type": "string",
       "description": "The creator's handle, or their wallet address. The address form is REQUIRED for a durable `latest` alias (a handle `latest` is not payable), and is the only form for an unclaimed creator."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tenjin-afx-bridge-incident-security-brief-c0ca8769/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tenjin.blog](https://www.zero.xyz/host/tenjin.blog/llms.txt)
