# Daily Briefing Quick – Market Snapshot

> Daily Briefing Quick – Market Snapshot is a paid API for AI agents from express-legacy-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15, last successful call 2026-04-22).

Returns a quick-tier daily market briefing covering macro indicators, crypto prices, trending coins, and recent news headlines for a low cost of $0.002 USDC.

## Facts

- Endpoint: GET https://express-legacy-production.up.railway.app/market/daily-briefing/quick
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-04-22
- Success rate: 100% of calls made through Zero
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/express-legacy-production-up-railway-app-66a0f1cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8CuI2kPEO7sJWySX1DJ09

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 express-legacy-production-up-railway-app-66a0f1cc
```

Example prompt: Give me a quick daily market briefing in English — I want today's macro snapshot including treasury yields, fed funds rate, and unemployment, plus the top trending crypto coins and BTC's latest price.

## When to prefer this

Choose this endpoint when you need a fast, low-cost ($0.002) daily market snapshot combining both macro and crypto data in one call. Prefer this over the insight tier when you need basic indicators quickly and don't require deep analysis or extended narrative. Use when budget is a constraint or when polling frequently for lightweight monitoring.

## Known failure modes

- FRED data unavailable — fred_available flag returns false, some macro fields may be null
- Upstream RSS feeds unreachable — news section may be empty or stale
- CoinGecko rate limits hit — trending coins or BTC price may be null
- Payment not processed — 402 response if x402 payment header is missing or invalid
- Invalid lang param — request rejected if lang is not 'en' or 'ja'

## How this service works

dailyBriefing — quick tier ($0.002 USDC)

## Output

Returns a JSON snapshot with macro indicators (VIX, 2Y/10Y treasury yields, unemployment rate, fed funds rate, yield spread), BTC price and 30-day return, BTC-SP500 correlation, a list of top trending coins with 24h price change percentages, and recent news headlines. Data sourced from FRED, Yahoo Finance, CoinGecko, CoinDesk, and CoinTelegraph.

## Example request

```json
{
 "query": "{\\\"input\\\": {\\\"type\\\": \\\"http\\\", \\\"method\\\": \\\"GET\\\", \\\"queryParams\\\": {\\\"lang\\\": \\\"en\\\"}}}"
}
```

## 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",
     "properties": {
      "lang": {
       "enum": [
        "en",
        "ja"
       ],
       "type": "string"
      }
     }
    }
   },
   "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/express-legacy-production-up-railway-app-66a0f1cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from express-legacy-production.up.railway.app](https://www.zero.xyz/host/express-legacy-production.up.railway.app/llms.txt)
