# Lone Star Oracle Equity Analysis

> Lone Star Oracle Equity Analysis is a paid API for AI agents from equity.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns price, fundamentals, technical indicators, health scores, and analyst ratings for any stock ticker symbol

## Facts

- Endpoint: GET https://equity.lonestaroracle.xyz/equity
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/equity-lonestaroracle-xyz-2afa5434
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vdnhamvB2WnJjAKDfuWYR

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 equity-lonestaroracle-xyz-2afa5434
```

Example prompt: Pull the full stock analysis for AAPL — I want the current price, P/E ratio, EPS, analyst rating and target, health score, debt-to-equity, and 52-week range.

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of a single stock's fundamentals, price action, and analyst sentiment in one call. It is ideal for investment research agents, stock screening workflows, or any situation where you need EPS, P/E, health scores, and analyst ratings together without stitching multiple data sources. Prefer this over general web search when you need structured, machine-readable financial data for a specific ticker.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker not listed on a supported exchange may return null fields
- Stale data if the market is closed or data provider is delayed
- Missing fields (e.g. total_assets) may be null for certain equity types like ETFs
- Network timeout or upstream data provider unavailability

## How this service works

Stock analysis — price fundamentals technical indicators for any ticker

## Output

A JSON object containing the ticker's current price, day change and percent, previous close, EPS, trailing and forward P/E, beta, market cap (raw and formatted), revenue (raw and formatted), ROE percentage, profit margin, debt-to-equity ratio, current ratio, dividend rate, 52-week high and low, percent from 52-week high, average and current volume, analyst rating (e.g. buy/hold/sell), analyst price target, sector, industry, exchange, health score, health label, health flags, and a human-readable summary string.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "name": "LoneStarOracle — EquityScope",
 "tags": [
  "stocks",
  "equity",
  "fundamentals",
  "yfinance"
 ],
 "type": "object",
 "version": "2.0.0",
 "category": "finance",
 "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": {
      "symbol": {
       "type": "string",
       "title": "Symbol"
      },
      "ticker": {
       "type": "string",
       "title": "Ticker"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 },
 "description": "AI-powered stock fundamentals and analysis. Returns price, P/E, market cap, EPS, revenue, analyst targets, 52-week range, dividend yield, and a Claude AI investment summary covering valuation context, analyst outlook, and key risks. Works for US stocks, ETFs, and crypto pairs. Powered by yfinance + Claude AI."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/equity-lonestaroracle-xyz-2afa5434/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from equity.lonestaroracle.xyz](https://www.zero.xyz/host/equity.lonestaroracle.xyz/llms.txt)
