# Interzoid Stock Info API

> Interzoid Stock Info API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Retrieves real-time stock information for a given ticker symbol, including price, market cap, P/E ratio, EPS, analyst assessment, and company details.

## Facts

- Endpoint: GET https://api.interzoid.com/getstockinfo
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-stock-info-api-733f53f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qsctcKkaObcRLZqa2QyyR

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 interzoid-stock-info-api-733f53f5
```

Example prompt: What's the current stock price, market cap, P/E ratio, and analyst assessment for COIN (Coinbase)?

## When to prefer this

Use this endpoint when you need a quick, single-call lookup of stock fundamentals and analyst sentiment for a specific ticker, especially when paying per-call via x402 micropayments. Prefer it over broader financial APIs when you need structured company metadata alongside price data in one response.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Network timeout if the upstream data source is unavailable
- Missing 'lookup' query parameter returns a 400-level error
- Stale data if market is closed or data provider feed is delayed

## How this service works

Get AI-powered stock analysis for a given ticker symbol including price metrics, financial health indicators, and analyst sentiment.

## Output

A JSON object containing the stock ticker, company name, current price, market cap, P/E ratio, EPS, exchange, website, a short company description, analyst assessment (e.g. Buy/Hold/Sell), and a status code.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "AAPL"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Stock ticker symbol (e.g. AAPL, COIN, TSLA)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "EPS": "$8.64",
  "Code": "Success",
  "Ticker": "COIN",
  "Company": "Coinbase Global, Inc.",
  "Credits": "0",
  "PERatio": "28.4",
  "Website": "www.coinbase.com",
  "Exchange": "NASDAQ",
  "MarketCap": "$63.2B",
  "Description": "Coinbase Global, Inc. provides financial infrastructure and technology for the crypto economy.",
  "CurrentPrice": "$245.32",
  "AnalystAssessment": "Buy"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-stock-info-api-733f53f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
