# The Stall — International Stock Price Lookup

> The Stall — International Stock Price Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.016/call, status unknown (last checked 2026-09-15).

Returns the current price of an international (non-US) stock given its exchange-suffixed ticker symbol, with optional market shorthand support for major global exchanges.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/intl-stock-price
- Price: $0.016/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-international-stock-price-lookup-c7d9c31b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NWuiGjbv4u5-A8c7k72N2

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 the-stall-international-stock-price-lookup-c7d9c31b
```

Example prompt: What is the current stock price of LVMH on the Paris exchange — the ticker is MC.PA?

## When to prefer this

Use this endpoint when you need the current price of a non-US stock listed on a major international exchange (Paris, Frankfurt, London, Tokyo, Sydney, Toronto, Hong Kong, Mumbai, etc.) and want to pay per-call in USDC with no API key required. Prefer this over US-focused stock APIs when the ticker is exchange-suffixed (e.g. MC.PA, SAP.DE, 7203.T) or when working with European, Asian, or Australian equities.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker without exchange suffix and no market shorthand provided may return incorrect or no data
- Market closed or after-hours may return stale or last-close price
- Unsupported exchange or market shorthand returns an error
- Payment failure (insufficient USDC on Base) blocks the request entirely

## How this service works

Returns current price and intraday metrics for international equities (EU, UK, Swiss, Japan, Australia, Canada, Hong Kong, India). Accepts exchange-suffixed tickers (MC.PA for LVMH, SAP.DE for SAP, AZN.L for AstraZeneca) or market shorthand (market=fr, ticker=MC). Sourced from Yahoo Finance — no API key, live during market hours. $0.020/call.

## Output

Returns the current market price of the specified international stock, sourced by exchange-suffixed ticker. Likely includes the price value and possibly currency, exchange, and ticker metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "MC.PA"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-international-stock-price-lookup-c7d9c31b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
