# The Stall — Revenue Growth Intelligence

> The Stall — Revenue Growth Intelligence is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.021/call, status unknown (last checked 2026-09-14).

Returns revenue growth intelligence data for a given US stock ticker symbol, paid per-call with USDC on Base via x402.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/revenue-growth-intel
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-revenue-growth-intelligence-1ef170fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zegn5RNzVw5gIFlOjz3pE

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-revenue-growth-intelligence-1ef170fb
```

Example prompt: Pull the revenue growth intelligence for NVDA — I want to see how fast their revenues have been growing.

## When to prefer this

Choose this endpoint when you need on-demand, pay-per-call revenue growth intelligence for a specific US-listed stock without the overhead of managing API keys or account subscriptions. It is well-suited for agents that need occasional lookups rather than bulk data pipelines, and for workflows that can pay micro-amounts in USDC on Base per query.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Ticker for non-US or non-public company may not be supported
- Payment failure or insufficient USDC balance prevents the call from completing
- Stale or delayed data if the underlying data source has not been refreshed recently

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

Structured revenue growth intelligence for the requested US stock ticker, likely including metrics such as year-over-year and/or quarter-over-quarter revenue growth rates, trend direction, and related financial performance signals.

## 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US stock ticker symbol (e.g. AAPL, MSFT, NVDA). Case-insensitive."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-revenue-growth-intelligence-1ef170fb/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)
