# Gloria AI - Latest News Headlines by Topic

> Gloria AI - Latest News Headlines by Topic is a paid API for AI agents from api.itsgloria.ai, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns the 10 most recent news headlines for a specified covered news topic

## Facts

- Endpoint: POST https://api.itsgloria.ai/news
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-itsgloria-ai-3a26a22d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Snc2Ed4FlnBLDtQ5SZ4fH

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-3a26a22d -d '<json body>'
```

Example prompt: What are the latest 10 headlines on artificial intelligence right now? Use Gloria AI to pull the most recent news for that topic.

## When to prefer this

Use this endpoint when you need a quick snapshot of the very latest 10 headlines on a specific topic and recency is paramount. Prefer this over the 20-headline keyword endpoint when you want a narrower, curated set, or over the summary/recap endpoints when you need raw headlines rather than synthesized summaries.

## Known failure modes

- Topic not covered by Gloria AI's news index — returns error or empty results
- Invalid or unrecognized topic name — endpoint may return no results
- Payment failure via x402 protocol — call blocked before news is returned
- Rate limiting or service unavailability — HTTP 429 or 5xx response

## How this service works

Get the latest news about a covered news topic, delivering the most recent 10 headlines.

## Output

A list of the 10 most recent news headlines for the specified covered topic, sourced from Gloria AI's real-time news feed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "feed_categories"
 ],
 "properties": {
  "to_date": {
   "type": "string",
   "description": "Get the news up to this date (YYYY-MM-DD format)"
  },
  "from_date": {
   "type": "string",
   "description": "Get the news from this date (YYYY-MM-DD format)"
  },
  "feed_categories": {
   "type": "string",
   "description": "Comma separated list of feed categories. 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": "array",
 "items": {
  "type": "object",
  "properties": {
   "id": {
    "type": "string"
   },
   "author": {
    "type": "string"
   },
   "signal": {
    "type": "string"
   },
   "tokens": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "sources": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "sentiment": {
    "type": "string"
   },
   "timestamp": {
    "type": "number"
   },
   "tweet_url": {
    "type": "string"
   },
   "long_context": {
    "type": "string"
   },
   "short_context": {
    "type": "string"
   },
   "feed_categories": {
    "type": "array",
    "items": {
     "type": "string"
    }
   },
   "sentiment_value": {
    "type": "number"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-itsgloria-ai-3a26a22d/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)
