# market2000.xyz Latest Price

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

Returns the most recent closing price and 1-day percentage change for a given asset ticker symbol.

## Facts

- Endpoint: GET https://market2000.xyz/get_latest_price
- Price: $0.01/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-latest-price-8280bf67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YAZorRLxCyHhLKXdqrP1q

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-latest-price-8280bf67
```

Example prompt: What's the latest closing price and how much has AAPL changed today?

## When to prefer this

Use this endpoint when you need only the latest closing price and 1-day change for a single ticker and want the lowest-cost option. Ideal as a quick pre- or post-analysis price check before running more expensive pattern analysis. Prefer over Price History when you don't need OHLC history, and over Pattern Screener when you only care about price, not chart patterns.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Ticker not supported by underlying data provider
- Market closed or data not yet available for the current day
- Network timeout or upstream data source unavailable
- Missing required 'ticker' query parameter returns a validation error

## How this service works

Latest Price — returns the most recent closing price and 1-day change for a ticker. Cheapest endpoint; ideal for quick price checks before or after pattern analysis.

HOW TO CALL:
  POST /get_latest_price?ticker=AAPL

PARAMETERS:
  ticker  — asset symbol (e.g. AAPL, BTC-USD, SPY)

RESPONSE: { ticker, date, close, change_pct }

## Output

Returns a JSON object with the ticker symbol, the date of the most recent bar (YYYY-MM-DD), the closing price as a number, and the 1-day percentage change as a decimal (e.g. 0.023 for +2.3%).

## 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Asset symbol (e.g. AAPL, BTC-USD, SPY)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ticker",
      "date",
      "close",
      "change_pct"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Date of the most recent bar (YYYY-MM-DD)"
      },
      "close": {
       "type": "number",
       "description": "Most recent closing price"
      },
      "ticker": {
       "type": "string"
      },
      "change_pct": {
       "type": "number",
       "description": "1-day percentage change (decimal)"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2024-06-04",
  "close": 194.35,
  "ticker": "AAPL",
  "change_pct": 0.0082
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-latest-price-8280bf67/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)
