# Daily Market Brief (Bundle + Own History)

> Daily Market Brief (Bundle + Own History) is a paid API for AI agents from api.eucompliance.tools, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a single-call daily crypto market bundle including market-regime score, Base gas price, best APY, BTC/ETH/SOL spot prices, top-5 perp markets, and 7-day historical series from the provider's own purchase archive, with a signed verifiable receipt.

## Facts

- Endpoint: GET https://api.eucompliance.tools/x402/daily
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/daily-market-brief-bundle-own-history-640fd81b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TpcuDNuOgnswelDQvGDoo

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 daily-market-brief-bundle-own-history-640fd81b
```

Example prompt: Pull today's daily market brief — give me the market-regime score, current Base gas price, best APY, BTC/ETH/SOL spot prices, top-5 perp markets, and the 7-day history for all of those, with a signed receipt.

## When to prefer this

Choose this endpoint when your agent needs a comprehensive, pre-computed daily crypto market snapshot in a single call rather than assembling data from multiple upstream sources. It is particularly valuable when you need the 7-day historical component series (not available from standard upstream providers), a market-regime score with a disclosed computation rule, and a signed verifiable receipt for audit or compliance purposes. Prefer it over raw data relays when you want computed indicators, history, and provenance in one atomic, scheduled-agent-friendly request.

## Known failure modes

- Payment failure or insufficient USDC balance returns 402 Payment Required
- Upstream data feed unavailability may cause partial bundle or stale data
- Invalid HTTP method returns 405 Method Not Allowed
- Rate limiting or provider outage returns 503 Service Unavailable
- Malformed query parameters return 400 Bad Request

## How this service works

Daily market bundle in one call: market-regime score (0-100, rule disclosed), Base gas price, best observed APY, BTC/ETH/SOL exchange-median spot, top-5 perp markets, and the 7-day history of every component from our own purchase archive - a series no upstream provider sells. Built for agents that buy on a schedule. Signed, verifiable receipt included.

## Output

A JSON bundle containing: a market-regime score (0-100) with disclosed rule, current Base network gas price, best observed APY across tracked venues, exchange-median spot prices for BTC, ETH, and SOL, the top-5 perpetual futures markets with relevant metrics, and a 7-day historical series for every component sourced from the provider's own paid data archive. Also includes a cryptographically signed, verifiable receipt confirming data provenance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/daily-market-brief-bundle-own-history-640fd81b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.eucompliance.tools](https://www.zero.xyz/host/api.eucompliance.tools/llms.txt)
