# market2000.xyz Financial Analysis API

> market2000.xyz Financial Analysis API 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).

Analyzes stock tickers using time series pattern matching to return valuation metrics, fundamentals, and analyst insights

## Facts

- Endpoint: GET https://market2000.xyz/analyze
- 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-financial-analysis-api-a196b1e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CLSskdYRSlPib2QzHcMO1

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-financial-analysis-api-a196b1e6
```

Example prompt: Is NVDA overvalued right now? Pull its P/E ratio, net margin, and analyst consensus price target so I can decide whether to add it to my portfolio.

## When to prefer this

Use this endpoint when you need quick, pay-per-call fundamental analysis and analyst consensus data for a specific stock ticker, especially when you want a natural-language insight alongside raw metrics. Prefer this over general financial data APIs when the query is framed as a natural language question about valuation or fundamentals and you want a synthesized answer rather than raw data dumps.

## Known failure modes

- Unknown or invalid ticker symbol returns an error or empty data
- Ambiguous natural language question may result in misclassified intent
- Payment failure via x402 protocol results in 402 response and no data returned
- Network timeout or API unavailability returns a 5xx error
- Questions outside equity fundamentals scope may return low-confidence or empty insights

## 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

Returns a JSON object with the ticker symbol, valuation metrics (e.g. P/E ratio), a natural-language insight string summarizing the key fundamentals and analyst outlook, and the detected intent of the query.

## 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",
     "required": [
      "question"
     ],
     "properties": {
      "question": {
       "type": "string",
       "description": "Natural language query, e.g. 'what moved today?', 'is NVDA overvalued?', 'options for SPY'"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "description": "Raw data from the underlying endpoint"
      },
      "intent": {
       "type": "string"
      },
      "insight": {
       "type": "string",
       "description": "One-sentence summary of the answer"
      },
      "question": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "ticker": "NVDA",
   "valuation": {
    "pe_ratio": 42.3
   }
  },
  "intent": "fundamentals",
  "insight": "NVDA: P/E 42.3x, net margin 55.0%, analyst: strong buy, target $1400.",
  "question": "is NVDA overvalued right now?"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-financial-analysis-api-a196b1e6/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)
