# Capital Allocation Score — The Stall by IntuiTek

> Capital Allocation Score — The Stall by IntuiTek is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-14).

Returns an AI-computed capital allocation score for a US stock ticker, indicating how effectively a company deploys its capital.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/capital-allocation-score
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/capital-allocation-score-the-stall-by-intuitek-ccad3578
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o-2N9-oMB8Pm8d_mJX6xx

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 capital-allocation-score-the-stall-by-intuitek-ccad3578
```

Example prompt: What's the capital allocation score for AAPL? I want to know how effectively Apple deploys its capital before I make an investment decision.

## When to prefer this

Choose this endpoint when you need a quick, quantitative signal on how well a company allocates its capital, without the overhead of building your own financial model. Ideal for AI agents doing pre-trade screening, portfolio ranking, or fundamental research at scale — especially when you need pay-per-call access with no API key setup. Best for US-listed equities where ticker symbols are well-defined.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Ticker for non-US equities or ETFs may not be supported
- Payment failure via x402/USDC results in 402 response with no data
- Stale or unavailable underlying data may yield no score for thinly covered names
- Network timeout from the underlying data provider

## 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

A structured response containing a capital allocation score for the requested US stock ticker, reflecting how effectively the company deploys its capital resources. May include a numeric score, rating tier, or supporting metrics.

## 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, AMZN). Case-insensitive."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/capital-allocation-score-the-stall-by-intuitek-ccad3578/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)
