# market2000.xyz Daily Brief

> market2000.xyz Daily Brief is a paid API for AI agents from market2000.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a structured daily market intelligence snapshot including fear/greed index, market movers, earnings calendar, and economic events for today.

## Facts

- Endpoint: GET https://market2000.xyz/daily_brief
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-daily-brief-a59563dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k74sJ0cfk_PazWDVjxzUR

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 market2000-xyz-daily-brief-a59563dd
```

Example prompt: Give me today's daily market brief — I want to know the fear and greed score, which stocks are the biggest movers, any earnings coming out today, and any major economic events like CPI or Fed data.

## When to prefer this

Use this endpoint when you need a comprehensive single-call daily market snapshot that combines sentiment (fear/greed), price action (movers), fundamental catalysts (earnings), and macro events (economic calendar) in one response. Prefer over building separate calls to multiple financial data APIs when a unified daily brief is sufficient.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Market data unavailable for the requested date — returns empty or partial fields
- Service outage — returns 5xx error
- Malformed request body — returns 400 Bad Request

## How this service works

An origin the crawlers already index. We count what AI agents try to buy, what they are refused, and what the AI companies take without sending anyone back. Sold per call in USDC.

## Output

A JSON object containing today's date, fear/greed index score and rating (with prior week comparison), top active/gaining/losing stocks with prices and percent changes, market open/closed status, a list of companies reporting earnings today, and a list of scheduled economic events with currency and event name.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string"
      },
      "fear_greed": {
       "type": "object"
      },
      "generated_at": {
       "type": "string"
      },
      "market_movers": {
       "type": "object"
      },
      "earnings_today": {
       "type": "object"
      },
      "economic_events_today": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-06-07",
  "fear_greed": {
   "score": 42.1,
   "rating": "Fear",
   "previous_week": 48.3
  },
  "generated_at": "2026-06-07T20:00:00+00:00",
  "market_movers": {
   "active": [
    {
     "price": 540,
     "symbol": "SPY",
     "change_pct": 0.4
    }
   ],
   "losers": [
    {
     "price": 22.1,
     "symbol": "INTC",
     "change_pct": -3.1
    }
   ],
   "gainers": [
    {
     "price": 1234,
     "symbol": "NVDA",
     "change_pct": 4.2
    }
   ],
   "market_status": "closed"
  },
  "earnings_today": {
   "count": 5,
   "companies": [
    {
     "time": "AMC",
     "ticker": "ORCL"
    }
   ]
  },
  "economic_events_today": {
   "count": 2,
   "events": [
    {
     "event": "CPI m/m",
     "currency": "USD"
    }
   ]
  }
 }
}
```

## More

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