ToolAssay

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).

Asked 2.0x its listed price for its own exampleour last check, 2026-09-24
1 of 1checks answered this week
593 msmedian answer time
$0.5listed price per call
$1.00price it asked us

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

CategoryMarket data
Provider hostdripstack.com
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days12 from 7 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
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"
}

This page as JSON