# DopamineDesk Stock Research Brief

> DopamineDesk Stock Research Brief is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a live snapshot of a US public company's stock price, recent price change, and SEC filing activity for quick due-diligence checks.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/stock_research_brief
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-stock-research-brief-b25684f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wOPqJFZbA1VwJURexP60G

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 dopaminedesk-stock-research-brief-b25684f1
```

Example prompt: Give me a quick stock research brief on NVDA — current price, daily change, and how many recent SEC filings they have on record.

## When to prefer this

Use this endpoint when you need a fast, combined snapshot of both live price data and SEC filing activity for a US-listed public company in a single call, especially in due-diligence or investment-research workflows where you want recent regulatory filings alongside current market price — without needing to stitch together separate market-data and SEC data sources.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty snapshot
- Non-US or OTC tickers may not be supported
- SEC data may be delayed or unavailable if upstream source is down
- Limit parameter out of range (below 1 or above 10) may cause a validation error
- Payment failure via x402/USDC results in 402 response before data is returned

## How this service works

Combine a current market quote with official recent SEC filing and insider-ownership filing metadata in one sourced company brief.

## Output

Returns a JSON object with the ticker symbol, success flag, a snapshot object containing current price, previous close, percent change, recent SEC filing count, and insider ownership filing count, plus counts of checks requested and completed.

## 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": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Number of recent SEC records per filing group, from 1 to 10. Defaults to 5."
      },
      "symbol": {
       "type": "string",
       "description": "US public-company ticker symbol."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "see"
     ],
     "properties": {
      "see": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "see": "https://ai-data-marketplace-1042299154756.us-central1.run.app/openapi.json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-stock-research-brief-b25684f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
