Paid JSON for stock-picker calls (API V2)
Paid JSON for stock-picker calls (API V2). Bearer API key / JWT / OAuth subscribers (PRO/EXPERT) are served without payment; everyone else pays per use via x402. Query params: optional `date=YYYY-MM-DD`, or `from`/`to` range (subscribers), plus `limit`, `limitDays`, `cursor`, `author`, `direction`, `query`, `sort`, `includePrices`. Rows include evidence quotes, article URLs, and direction-adjusted prices. Priced per distinct source post (call GET /api/v2/stock-picks/quote for the exact total).
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://dripstack.com/api/v2/stock-picks
| Category | Market data |
|---|---|
| Provider host | dripstack.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 12 from 7 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.00 | 593 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": 200
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}