# Stock Quote API – Control Operativo

> Stock Quote API – Control Operativo is a paid API for AI agents from herramientas-cobrables.consultoressasic.chatgpt.site, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a real-time stock price quote for a given ticker symbol, including price change, percentage change, and previous close.

## Facts

- Endpoint: GET https://herramientas-cobrables.consultoressasic.chatgpt.site/api/paid/stock-quote
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stock-quote-api-control-operativo-c77f7148
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__JgPiiuwQQwiKa17ds9Fv

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 stock-quote-api-control-operativo-c77f7148
```

Example prompt: What is the current stock price of AAPL, including today's price change and percentage move?

## When to prefer this

Choose this endpoint when you need a quick, paid real-time stock quote for a single ticker symbol via the x402 micropayment protocol, particularly in agentic workflows that already handle USDC payments and need verifiable on-chain transaction receipts for each data fetch.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error response
- Market is closed and real-time data is unavailable, may return null for change fields
- Payment failure or insufficient USDC balance prevents the API call from completing
- Symbol format does not match the required pattern (1–12 uppercase alphanumeric characters)
- Network timeout or upstream data provider outage results in a non-200 response

## How this service works

Plantillas y manuales digitales para controlar inventario, ventas y margen.

## Output

A JSON object containing the stock symbol, current price, price change since previous close, percentage change, previous close price, exchange name, data source, the UTC timestamp of observation, the USD amount charged, and an on-chain transaction hash confirming the micropayment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "pattern": "^[A-Z0-9.^=-]{1,12}$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "source",
      "symbol",
      "price"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "price": {
       "type": "number"
      },
      "change": {
       "type": [
        "number",
        "null"
       ]
      },
      "source": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "changePct": {
       "type": [
        "number",
        "null"
       ]
      },
      "chargedUsd": {
       "type": "string"
      },
      "observedAt": {
       "type": [
        "string",
        "null"
       ],
       "format": "date-time"
      },
      "previousClose": {
       "type": [
        "number",
        "null"
       ]
      },
      "transactionHash": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "price": 200,
  "change": 1,
  "source": "public market data",
  "symbol": "AAPL",
  "currency": "USD",
  "exchange": "NMS",
  "changePct": 0.5025,
  "chargedUsd": "0.050000",
  "observedAt": "2026-01-01T00:00:00.000Z",
  "previousClose": 199,
  "transactionHash": "0x..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stock-quote-api-control-operativo-c77f7148/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from herramientas-cobrables.consultoressasic.chatgpt.site](https://www.zero.xyz/host/herramientas-cobrables.consultoressasic.chatgpt.site/llms.txt)
