# AgentBodega Morning Briefing

> AgentBodega Morning Briefing is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Generates a structured, source-neutral morning news briefing grouped into agent-ready sections (global news, markets, AI/technology, crypto, science) with citations and per-section item caps.

## Facts

- Endpoint: POST https://agentbodega.store/api/public-data/news/morning-briefing
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-morning-briefing-8f39d22c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5cP1vjq22BVsSxYAYWp-Z

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 agentbodega-morning-briefing-8f39d22c -d '<json body>'
```

Example prompt: Pull together my morning briefing covering global news, markets, AI, crypto, and science from the last 12 hours, include citations, and keep it to 5 items per section.

## When to prefer this

Choose this endpoint when you need a pre-structured, multi-section morning briefing aggregated from public news signals without needing to integrate individual news APIs. It is ideal for agentic workflows that require a daily digest grouped by domain (markets, tech, crypto, etc.) with citations ready-to-use, rather than raw article retrieval or single-topic search.

## Known failure modes

- Invalid or unrecognized topic values may return empty sections
- Very short time windows (hours=1) may yield sparse results
- Requesting too many items per section may be silently capped
- Service unavailability from upstream news sources may reduce section coverage
- Malformed JSON body returns a 400 error

## How this service works

Build a source-neutral morning briefing from managed public news signals, grouped into agent-ready sections such as global news, markets, AI/technology, crypto, and science with citations and caps.

## Output

A structured JSON briefing divided into named sections (global news, markets, AI/technology, crypto, science), each containing a list of news items with summaries and optional citations, respecting the requested item cap per section.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "focus",
       "type": "string",
       "required": false
      },
      {
       "name": "topics",
       "type": "array",
       "required": false
      },
      {
       "name": "hours",
       "type": "integer",
       "required": false
      },
      {
       "name": "maxItemsPerSection",
       "type": "integer",
       "required": false
      },
      {
       "name": "includeCitations",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [],
     "fieldCount": 5,
     "contentType": "application/json",
     "optionalPreview": [
      "focus",
      "topics",
      "hours",
      "maxItemsPerSection",
      "includeCitations"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-morning-briefing-8f39d22c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
