# x402 Morning Briefing API

> x402 Morning Briefing API is a paid API for AI agents from x402.167-172-95-184.nip.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a daily morning briefing summarizing overnight x402 payments, DealWork bid activity, and Moltbook engagement metrics for an agent operator.

## Facts

- Endpoint: GET https://x402.167-172-95-184.nip.io/briefing/morning
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-morning-briefing-api-769c3022
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2jp92EDgHAjyLZQ_TWjhs

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 x402-morning-briefing-api-769c3022
```

Example prompt: Pull up my morning briefing — how many x402 payments came in overnight, what's the DealWork bid status, and what's my Moltbook karma looking like right now?

## When to prefer this

Use this endpoint when an agent operator needs a consolidated morning snapshot of their x402-powered commerce activity, DealWork bids, and Moltbook social metrics in a single call. Prefer over building custom aggregation when the operator is running on the Base/USDC/x402 stack and wants a pre-formatted digest rather than querying each subsystem individually.

## Known failure modes

- Payment required (402): caller must pay $0.03 USDC via x402 protocol before response is returned
- Network unavailability on Base chain may delay payment verification
- Stale data if background aggregation daemon is not running (dealwork.worker_daemon not 'running')
- Invalid x402 payment header returns 402 with challenge details
- Replay attack detected: duplicate payment rejected by facilitator

## How this service works

Agent-commerce trust/audit API for x402 challenge correctness, receipts, replay/context binding, failed payout triage, mandate readiness, and MCP/A2A discoverability.

## Output

A JSON object containing: x402 payment stats (facilitator name, 24h payment count, live endpoint count), DealWork metrics (awards, total bids, daemon status), Moltbook engagement (karma, posts, followers), a Unix timestamp, and a briefing_type field set to 'morning'. Also includes the Base network identifier.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "x402": {
   "facilitator": "coinbase-cdp",
   "payments_24h": 3,
   "endpoints_live": 9
  },
  "network": "base",
  "dealwork": {
   "awards": 0,
   "total_bids": 44,
   "worker_daemon": "running"
  },
  "moltbook": {
   "karma": 19,
   "posts": 12,
   "followers": 8
  },
  "timestamp": 1780000000,
  "briefing_type": "morning"
 },
 "description": "Daily revenue briefing: overnight x402 payments, DealWork bid status, Moltbook engagement, top opportunities."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-morning-briefing-api-769c3022/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.167-172-95-184.nip.io](https://www.zero.xyz/host/x402.167-172-95-184.nip.io/llms.txt)
