# Alephant Stock Analysis Tool

> Alephant Stock Analysis Tool is a paid API for AI agents from pay.alephant.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Analyzes a stock ticker symbol and returns a structured financial analysis report in English or Chinese

## Facts

- Endpoint: POST https://pay.alephant.io/x402/stock-analysis-tool
- 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/alephant-stock-analysis-tool-def246e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ixWKQoOoV64lUVhIuun4X

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 alephant-stock-analysis-tool-def246e5 -d '<json body>'
```

Example prompt: Can you run a stock analysis on TSLA and give me the results in English?

## When to prefer this

Use this endpoint when an AI agent needs on-demand, per-call stock analysis for a specific ticker symbol, especially when supporting both English and Chinese language outputs. Ideal for workflows where paying micro-amounts per query is acceptable and a full brokerage API integration is overkill.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Unsupported language value other than 'en' or 'zh' causes validation failure
- Payment of $0.01 USDC not completed via x402 protocol results in 402 Payment Required
- Network timeout if upstream financial data source is slow
- Ticker not found for non-US markets may return incomplete data

## How this service works

Alephant provides x402-ready Agent Finance Gateway endpoints for production AI agents, workflows, skills, APIs.

## Output

A structured financial analysis report for the requested stock ticker, covering key metrics, market performance, and insights, returned in the specified language (English or Chinese Markdown format).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbols": {
   "type": "string",
   "description": "Stock ticker symbol, such as AAPL, TSLA, NVDA, or 00700."
  },
  "language": {
   "enum": [
    "en",
    "zh"
   ],
   "type": "string",
   "default": "en",
   "description": "Response language."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alephant-stock-analysis-tool-def246e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.alephant.io](https://www.zero.xyz/host/pay.alephant.io/llms.txt)
