# GlianaAI Stock Brief

> GlianaAI Stock Brief is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-13).

Returns a concise AI-generated brief summarizing key financial data for a US stock, including fundamentals and relevant SEC or market context.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/stock-brief
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-stock-brief-fae1789f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mJwlXkbmVwu-fg5WZLvPO

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 glianaai-stock-brief-fae1789f
```

Example prompt: Can you pull a stock brief for Microsoft — give me the key financials and a quick AI-generated summary of where things stand?

## When to prefer this

Choose this endpoint when you need a fast, AI-synthesized financial brief on a US publicly traded company without setting up a brokerage or financial data subscription. It is especially useful for agents that need on-demand stock summaries pay-per-call in USDC with no signup, and when you want a single endpoint that combines LLM summarization with live market and SEC data rather than stitching together multiple APIs.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Missing required input body parameters returns a 400-style validation error
- Payment failure or insufficient USDC balance blocks the request
- Data unavailable for non-US or unlisted companies
- Rate limiting if too many requests are made in quick succession

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

A concise AI-generated brief on the requested stock, covering key financial fundamentals, relevant market data, and potentially highlights from SEC filings or insider activity, returned as a JSON response with a 'tool' field identifying the endpoint.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "tools/stock-brief"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-stock-brief-fae1789f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
