# Base Daily Brief

> Base Daily Brief is a paid API for AI agents from basedailybrief.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-10).

Returns a curated, dated daily bulletin summarizing news and developments from the Base blockchain ecosystem, in English or Turkish.

## Facts

- Endpoint: GET https://basedailybrief.vercel.app/api/bulletins/%7Bdate%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-daily-brief-87a5c387
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kKqPPUAeKf-3K5ywJJL3X

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 base-daily-brief-87a5c387
```

Example prompt: Can you pull up the Base Daily Brief for today in English so I can catch up on what's happening in the Base ecosystem?

## When to prefer this

Use this endpoint when you need a pre-curated, human-readable daily digest of Base blockchain ecosystem news for a specific date, especially when you want a narrative summary rather than raw on-chain data. Prefer this over raw blockchain explorers or generic crypto news APIs when the user wants a concise, editorially filtered summary of Base-specific activity.

## Known failure modes

- Invalid or future date returns a 404 or empty bulletin
- Unsupported locale value may default to English or return an error
- Date with no published bulletin returns empty or null content
- Payment failure via x402 protocol blocks access to the response

## How this service works

Base ekosisteminden süzülmüş, kaynaklı günlük özetler.

## Output

Returns a JSON object containing the requested date, the bulletin title, the locale used, the full bulletin content, and a shorter summary of Base ecosystem events for that day.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "locale": {
   "enum": [
    "en",
    "tr"
   ],
   "type": "string",
   "description": "Language: 'en' or 'tr'. Default: 'en'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string"
  },
  "title": {
   "type": "string"
  },
  "locale": {
   "type": "string"
  },
  "content": {
   "type": "string"
  },
  "summary": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-daily-brief-87a5c387/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from basedailybrief.vercel.app](https://www.zero.xyz/host/basedailybrief.vercel.app/llms.txt)
