# AgentServices Stock Data — Real-Time Stock Quote by Ticker

> AgentServices Stock Data — Real-Time Stock Quote by Ticker is a paid API for AI agents from agentservices.to, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns stock market data for a given ticker symbol, paid via x402 micropayment on Base

## Facts

- Endpoint: GET https://agentservices.to/v1/stocks/%7Bticker%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentservices-stock-data-real-time-stock-quote-by-ticker-d372553b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Njob4Wvlar2SeQGlmZw9

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 agentservices-stock-data-real-time-stock-quote-by-ticker-d372553b
```

Example prompt: Can you pull the current stock price for AAPL from AgentServices and tell me what it's trading at right now?

## When to prefer this

Choose this endpoint when your AI agent needs to look up a stock quote or equity market data programmatically and you want to pay per-call with crypto micropayments (USDC on Base via x402) rather than subscribing to a traditional financial data API. Ideal for agentic workflows that only occasionally need stock prices and want low-overhead, pay-as-you-go access without API keys or monthly subscriptions.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Micropayment failure or insufficient USDC balance blocks the request
- Market closed or after-hours data may be delayed or unavailable
- Rate limiting if too many requests are made in a short period
- Ticker exists but is delisted or no longer trading

## How this service works

Paid data APIs for AI agents. Crypto market data, DeFi yields, IP geolocation, dispute resolution, marketing intelligence. Powered by x402 micropayments on Base.

## Output

Returns current stock market data for the requested ticker, likely including price, possibly volume, change, and other quote fields, delivered as a JSON response after a $0.02 USDC micropayment is processed on Base via x402.

## 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": [
      "DELETE",
      "GET",
      "HEAD"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "routeTemplate": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentservices-stock-data-real-time-stock-quote-by-ticker-d372553b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentservices.to](https://www.zero.xyz/host/agentservices.to/llms.txt)
