# Gloria AI News Recap

> Gloria AI News Recap is a paid API for AI agents from api.itsgloria.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a recap or summary of news for a specific category over the past 12-24 hours

## Facts

- Endpoint: POST https://api.itsgloria.ai/recaps
- 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/api-itsgloria-ai-ae53961e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dDRdAXPDAUgJQ618vmNN7

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 api-itsgloria-ai-ae53961e -d '<json body>'
```

Example prompt: Give me a recap of what happened in the AI agents space over the past 24 hours — a summarized digest, not just headlines.

## When to prefer this

Use this endpoint when you need a synthesized prose summary or digest of news for a specific topic category over the past 12-24 hours, rather than raw headlines. Prefer this over the headlines endpoint when the user wants a briefing, digest, or recap rather than a list of articles. Prefer over the token/ticker endpoint when the user wants a category-level summary rather than a single asset's news.

## Known failure modes

- Invalid or unsupported feed_category value returns an error — must be one of the 16 supported categories (ai, ai_agents, base, bitcoin, crypto, dats, defi, ethereum, hyperliquid, machine_learning, macro, perps, rwa, ripple, solana, tech)
- Missing required feed_category field returns a 400-level error
- Payment failure (x402) if USDC payment of $0.1 is not included or fails
- Service unavailability returns 5xx if upstream news data is unavailable
- Empty or thin recap if very little news was published in the category within the 12-24 hour window

## How this service works

Get a recap of the news or summary of a covered news topic over the past 12-24 hours.

## Output

Returns a structured object containing a prose recap/summary of news for the requested category, the timeframe covered, the feed category echoed back, and a created_at timestamp indicating when the recap was generated.

## Example request

```json
{
 "feed_category": "ai_agents"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "feed_category"
 ],
 "properties": {
  "feed_category": {
   "type": "string",
   "description": "Feed category. Available categories: ai, ai_agents, base, bitcoin, crypto, dats, defi, ethereum, hyperliquid, machine_learning, macro, perps, rwa, ripple, solana, tech"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "recap": {
   "type": "string"
  },
  "timeframe": {
   "type": "string"
  },
  "created_at": {
   "type": "string"
  },
  "feed_category": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-itsgloria-ai-ae53961e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.itsgloria.ai](https://www.zero.xyz/host/api.itsgloria.ai/llms.txt)
