# Tenjin Stablecoin Chart & Fees Article

> Tenjin Stablecoin Chart & Fees Article 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 specific Tenjin blog article covering DeFiLlama stablecoin chart data (~$306.23B) and daily tracked fees rebounding 6.50% to ~$59.13M

## Facts

- Endpoint: GET https://tenjin.blog/api/read/onchain-notes/stablecoin-chart-stayed-low-while-fees-rebounded
- 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-stablecoin-chart-fees-article-f82aca44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l7caU08LxYhlTfNu5NMWI

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-stablecoin-chart-fees-article-f82aca44
```

Example prompt: Fetch the Tenjin onchain-notes article about the stablecoin chart staying low while fees rebounded — the one for creator handle 'onchain-notes' with slug 'stablecoin-chart-stayed-low-while-fees-rebounded'.

## When to prefer this

Use this endpoint when you need to retrieve this specific Tenjin article about stablecoin chart and fee data, particularly when you want paywalled onchain DeFi market notes delivered via x402 micropayment. Prefer this over generic web scraping when the content is behind a paywall and you have an x402-compatible payment flow ready.

## Known failure modes

- Slug or handle not found — 404 if the article slug or creator handle doesn't exist
- Payment failure — 402 if the x402 micropayment of $0.1 USDC is not settled correctly
- Invalid method — only GET is supported; other HTTP methods return an error
- Reserved 'latest' slug used with a handle instead of wallet address — may result in non-payable resolution
- Network timeout or upstream blog unavailability

## How this service works

DeFiLlama's July 27 chart row slipped to roughly $306.23B, while the live USD-pegged asset table stayed near $309.10B and tracked daily fees rose 6.50% to about $59.13M.

## Output

The full text content of the Tenjin blog article discussing DeFiLlama's stablecoin chart data (approximately $306.23B), live USD-pegged asset table (~$309.10B), and daily tracked fees rising 6.50% to ~$59.13M, returned as a structured response object with content type and example payload.

## 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-stablecoin-chart-fees-article-f82aca44/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)
