# Cabrini Full Research Brief

> Cabrini Full Research Brief is a paid API for AI agents from cabrini.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a comprehensive research brief for a single US stock ticker combining price action, fundamentals, insider transactions, and split history in one call.

## Facts

- Endpoint: POST https://cabrini.ai/v1/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cabrini-full-research-brief-5c1ca14b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__FPLmDmYPH3rdtgGHVS66

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 cabrini-full-research-brief-5c1ca14b -d '<json body>'
```

Example prompt: Pull a full research brief for NVDA as of today using the last 60 days of price history — I want price action, fundamentals, insider transactions, and splits all in one shot.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional view of a single US stock in one call — replacing the need to individually query price history, fundamentals, insider transactions, and split data. It is the most cost-efficient and latency-efficient option for full stock due diligence tasks where multiple data dimensions are required simultaneously. Prefer it over individual Cabrini endpoints when you need 3 or more data types for the same ticker at the same time.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Future as-of date or dates with no trading data may return empty or error
- lookback_days outside supported range may be clamped or return an error
- Payment failure or insufficient USDC balance blocks the call
- Rate limiting if too many requests are sent in quick succession

## How this service works

Full research brief: price action, fundamentals, insiders, splits — all joined for one ticker in one call. Replaces ~20 individual queries. $0.25 USDC.

## Output

A consolidated research brief containing historical price action bars for the specified lookback period, company fundamentals, SEC Form 4 insider buy/sell activity, stock split history, and other key financial data — all joined and returned for the requested ticker and date in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "As-of date (default: today). YYYY-MM-DD"
  },
  "ticker": {
   "type": "string",
   "description": "US stock ticker symbol"
  },
  "lookback_days": {
   "type": "integer",
   "description": "Days of price history to include (default 30)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cabrini-full-research-brief-5c1ca14b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cabrini.ai](https://www.zero.xyz/host/cabrini.ai/llms.txt)
