# basefeed Base Pulse Pack

> basefeed Base Pulse Pack is a paid API for AI agents from api.basefeed.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a bundled snapshot of live Base chain data including gas prices, Morpho stablecoin yields, and ERC-20 token metadata in a single call

## Facts

- Endpoint: GET https://api.basefeed.io/v1/pack/base-pulse
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/basefeed-base-pulse-pack-90cd4898
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qlNlu0R4Dj0SEuPS6hrCr

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 basefeed-base-pulse-pack-90cd4898
```

Example prompt: Pull the latest Base chain snapshot for me — current gas prices, Morpho stablecoin yields, and ERC-20 token metadata all in one shot.

## When to prefer this

Choose this endpoint when you need multiple Base chain data points (gas + yields + token metadata) in a single low-latency call without managing API keys or subscriptions. Ideal for agents that need a quick situational snapshot of Base network conditions and DeFi yields. Prefer this over separate gas, yield, and token endpoints when you want to minimize round trips and total cost. Best suited for real-time monitoring, DeFi dashboards, and transaction timing decisions on Base.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Base RPC node temporarily unavailable — returns upstream error or stale data warning
- Invalid or missing pack parameter — returns 400 Bad Request
- Rate limit exceeded — returns 429 Too Many Requests
- Morpho protocol data unavailable — partial response with gas data only

## How this service works

Pack: gas + top Morpho stablecoin yields + block

## Output

A JSON object with ok status flag and pack identifier, containing live Base chain data: current gas price in gwei/wei, Morpho Blue stablecoin yield rates (APY for supported assets), and ERC-20 token metadata — all bundled as a single 'base-pulse' pack response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "pack": "base-pulse"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/basefeed-base-pulse-pack-90cd4898/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.basefeed.io](https://www.zero.xyz/host/api.basefeed.io/llms.txt)
