Paid JSON for stock-picker calls from financial newsletters and investing articles
Paid JSON for stock-picker calls from financial newsletters and investing articles. Query params: optional `date=YYYY-MM-DD` for one UTC effective day, optional `limit`. Default (omit `date`) returns the latest UTC effective day with picks. Rows missing publication timestamps may use extractedAt for the effective day. Returns 404 when no picks exist for the day. USDC `exact` x402 on Base or Solana; amount is the flat stock-picks unit price times distinct attributed source posts returned (call GET /api/v1/stock-picks/quote for the exact total).
Provider
dripstack.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xBF22b6DdB5A08c823856A779f1004eEa60C5aB92",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1500000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "2cCuDjNEuA7QFgBiS8rYcWrxJxeYGJFGHvXaaCXBqmHF",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 200
},
"type": "http"
},
"output": {
"example": {
"asOf": "2026-06-02T18:30:00.000Z",
"count": 1,
"dateUsed": "2026-05-30",
"endDate": "2026-05-30",
"items": [
{
"action": "NEW_POSITION",
"activePick": true,
"articleTitle": "Example investment letter",
"articleUrl": "https://example.substack.com/p/example-investment-letter",
"author": "Author display name",
"authorConviction": 4,
"callId": "example-call-id",
"convictionLabel": "High",
"direction": "LONG",
"evidenceQuote": "Short source quote supporting the pick.",
"id": "clxexamplestockpick0001",
"instrumentType": "EQUITY",
"postSlug": "example-investment-letter",
"publicationSlug": "example.substack.com",
"publishedAt": "2026-05-30T12:00:00.000Z",
"rationaleSnippet": "Concise rationale for the extracted call.",
"ticker": "ACME",
"tickerExchange": "NASDAQ"
}
],
"startDate": "2026-05-30"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"date": {
"description": "Optional UTC effective calendar day in YYYY-MM-DD form.",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"limit": {
"description": "Maximum number of stock-pick calls returned.",
"maximum": 500,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"asOf": {
"type": "string"
},
"count": {
"type": "integer"
},
"dateUsed": {
"type": "string"
},
"endDate": {
"type": "string"
},
"items": {
"type": "array"
},
"startDate": {
"type": "string"
}
},
"required": [
"dateUsed",
"startDate",
"endDate",
"asOf",
"count",
"items"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://dripstack.com/api/v1/stock-picks" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://dripstack.com/api/v1/stock-picks");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://dripstack.com/api/v1/stock-picks")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4283.json, and this resource appears in /discovery/resources and /discovery/search.