# Tenjin Blog Article Reader – calldata-6

> Tenjin Blog Article Reader – calldata-6 is a paid API for AI agents from tenjin.blog, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Fetches a specific paid article from the Tenjin blog using a creator handle and article slug, returning the article content for the 'calldata-6' piece by creator 'tofu'.

## Facts

- Endpoint: GET https://tenjin.blog/api/read/tofu/calldata-6
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tenjin-blog-article-reader-calldata-6-81b4289b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Krtv4kYpPDGookWpgsDxl

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-blog-article-reader-calldata-6-81b4289b
```

Example prompt: Can you fetch the calldata-6 article written by tofu on Tenjin? It covers Arbitrum packaging account abstraction into app infrastructure and EF governance — I want to read the full content.

## When to prefer this

Use this endpoint when you need to retrieve a specific published article from the Tenjin crypto blog platform, particularly when you know both the creator's handle (or wallet address) and the article's URL slug. It is the right choice for fetching crypto-native journalism about blockchain infrastructure, EIPs, and DeFi gated behind an x402 micropayment wall. Prefer this over general web scraping when the content is paywalled and requires a USDC micropayment to access.

## Known failure modes

- Article not found if slug or handle is incorrect (404)
- Payment failure if wallet has insufficient USDC balance
- Slug 'latest' used with a handle instead of wallet address — not payable
- Non-GET method used — endpoint only supports GET
- Rate limiting or access restriction from the Tenjin platform
- Creator handle not yet claimed — must use wallet address form instead

## How this service works

Arbitrum packages account abstraction into app infrastructure, and the EF adds security-heavy governance weight.

## Output

Returns the full text content of the article identified by the 'tofu' handle and 'calldata-6' slug, likely including the article body, title, publication metadata, and any structured content fields defined by the Tenjin platform. Access is gated by an x402 micropayment of $0.1 USDC.

## 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-blog-article-reader-calldata-6-81b4289b/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)
