# Tenjin Crypto Context: Daily Flat Tape, Busier Dollar Rails

> Tenjin Crypto Context: Daily Flat Tape, Busier Dollar Rails 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).

Returns a structured crypto market briefing covering BTC price, market cap, sentiment, global volume, stablecoin float, and key news like Mastercard closing BVNK.

## Facts

- Endpoint: GET https://tenjin.blog/api/read/crypto-context/crypto-context-daily-flat-tape-busier-dollar-rails
- 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-crypto-context-daily-flat-tape-busier-dollar-rails-e63bb5e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UhqG5Jg36WfLbRCAj8X0N

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-crypto-context-daily-flat-tape-busier-dollar-rails-e63bb5e8
```

Example prompt: Pull the Tenjin daily crypto context article 'crypto-context-daily-flat-tape-busier-dollar-rails' from the handle 'crypto-context' — I want the BTC price, market cap change, sentiment reading, and any major news like the Mastercard BVNK story.

## When to prefer this

Choose this endpoint when you need a pre-packaged, narrative crypto market context briefing for a specific date including BTC price, sentiment index, stablecoin float, and curated news — rather than building a raw data pipeline from multiple price or volume APIs. Ideal for agents that need human-readable yet structured crypto summaries with source-linked context.

## Known failure modes

- Slug not found — article does not exist at the given path, returns 404
- Payment failure — insufficient USDC balance or x402 payment protocol error
- Handle mismatch — wrong creator handle returns no content
- Rate limiting — too many requests in a short window
- Stale content — article may reflect data from a specific past date rather than live market data

## How this service works

BTC held near $64,097 and total market cap ticked up 0.12%, but sentiment fell to Extreme Fear, global volume slipped, weekly stablecoin float stayed lower, and Mastercard closed BVNK.

## Output

A structured article payload containing crypto market data points (BTC price ~$64,097, total market cap change +0.12%, Extreme Fear sentiment, slipped global volume, weekly stablecoin float comparison) and curated news items such as Mastercard closing BVNK, delivered as a JSON object with type and example fields.

## 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-crypto-context-daily-flat-tape-busier-dollar-rails-e63bb5e8/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)
