# DripStack Stock Picks API

> DripStack Stock Picks API is a paid API for AI agents from dripstack.xyz, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Returns AI-extracted stock-picker calls sourced from Substack publications for a given date, priced per distinct source post returned.

## Facts

- Endpoint: GET https://dripstack.xyz/api/v1/stock-picks
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dripstack-stock-picks-api-1230be4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sq9yBLoIC62yFucoYQcWh

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 dripstack-stock-picks-api-1230be4f
```

Example prompt: Pull me the stock-picker calls that DripStack extracted from Substack newsletters for January 15, 2025 — give me up to 50 results.

## When to prefer this

Use this endpoint when you need structured, AI-extracted stock recommendation data sourced specifically from Substack newsletter publications, with attribution to original posts. Prefer this over generic financial data APIs when you want curated, human-authored newsletter-sourced picks rather than raw market data or analyst ratings.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) returns a 400 or validation error
- Limit out of range (below 1 or above 500) returns a validation error
- No picks available for the requested date returns an empty items array with count 0
- Payment failure via x402 protocol blocks the response
- Date in the future may return empty or no data

## How this service works

Connect your agent to top financial newsletters and podcasts.

## Output

A JSON object containing a date range (startDate, endDate), an asOf timestamp, a count of results, and an array of stock-pick items extracted from distinct attributed Substack source posts. Payment is charged per distinct source post returned, minimum $0.10 USD.

## 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",
     "properties": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional UTC effective calendar day in YYYY-MM-DD form."
      },
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1,
       "description": "Maximum number of stock-pick calls returned."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "dateUsed",
      "startDate",
      "endDate",
      "asOf",
      "count",
      "items"
     ],
     "properties": {
      "asOf": {
       "type": "string"
      },
      "count": {
       "type": "integer"
      },
      "items": {
       "type": "array"
      },
      "endDate": {
       "type": "string"
      },
      "dateUsed": {
       "type": "string"
      },
      "startDate": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asOf": "2026-06-02T18:30:00.000Z",
  "count": 1,
  "items": [
   {
    "id": "clxexamplestockpick0001",
    "action": "NEW_POSITION",
    "author": "Author display name",
    "callId": "example-call-id",
    "ticker": "ACME",
    "postSlug": "example-investment-letter",
    "direction": "LONG",
    "activePick": true,
    "articleUrl": "https://example.substack.com/p/example-investment-letter",
    "publishedAt": "2026-05-30T12:00:00.000Z",
    "articleTitle": "Example investment letter",
    "evidenceQuote": "Short source quote supporting the pick.",
    "instrumentType": "EQUITY",
    "tickerExchange": "NASDAQ",
    "convictionLabel": "High",
    "publicationSlug": "example.substack.com",
    "authorConviction": 4,
    "rationaleSnippet": "Concise rationale for the extracted call."
   }
  ],
  "endDate": "2026-05-30",
  "dateUsed": "2026-05-30",
  "startDate": "2026-05-30"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dripstack-stock-picks-api-1230be4f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dripstack.xyz](https://www.zero.xyz/host/dripstack.xyz/llms.txt)
