curl --request GET \
--url https://dripstack.com/api/v1/stock-picks/quoteimport requests
url = "https://dripstack.com/api/v1/stock-picks/quote"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/stock-picks/quote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dripstack.com/api/v1/stock-picks/quote",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dripstack.com/api/v1/stock-picks/quote"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dripstack.com/api/v1/stock-picks/quote")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/stock-picks/quote")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"dateUsed": "2026-06-14",
"startDate": "2026-06-14",
"endDate": "2026-06-14",
"asOf": "2026-06-15T10:30:00Z",
"count": 2,
"attributedPostCount": 1,
"amountUsd": "1.00",
"posts": [
{
"publicationSlug": "the-fr",
"postSlug": "dollar-endgame",
"amountUsd": "1.00"
}
]
}{
"error": "<string>",
"issues": {}
}{
"error": "<string>"
}{
"error": "<string>"
}V1 — Quote the stock-picks bundle price for one day (free, legacy).
V1 (legacy — still available; prefer V2). Free preflight for the paid stock-picks route. Returns the exact bundle amountUsd and per-attributed-post breakdown for the same date/limit the paid route would charge. Does not return pick rows, tickers, or evidence. Use this before confirming spend, then call GET /api/v1/stock-picks (or MCP list_stock_picks) with the frozen dateUsed. Live 402 on the paid route remains authoritative for payment clients.
curl --request GET \
--url https://dripstack.com/api/v1/stock-picks/quoteimport requests
url = "https://dripstack.com/api/v1/stock-picks/quote"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/stock-picks/quote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dripstack.com/api/v1/stock-picks/quote",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dripstack.com/api/v1/stock-picks/quote"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dripstack.com/api/v1/stock-picks/quote")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/stock-picks/quote")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"dateUsed": "2026-06-14",
"startDate": "2026-06-14",
"endDate": "2026-06-14",
"asOf": "2026-06-15T10:30:00Z",
"count": 2,
"attributedPostCount": 1,
"amountUsd": "1.00",
"posts": [
{
"publicationSlug": "the-fr",
"postSlug": "dollar-endgame",
"amountUsd": "1.00"
}
]
}{
"error": "<string>",
"issues": {}
}{
"error": "<string>"
}{
"error": "<string>"
}Query Parameters
UTC effective calendar day to return. When omitted, the server resolves the latest day with picks.
^\d{4}-\d{2}-\d{2}$Maximum number of stock-pick calls returned (1-500). Defaults to 200.
1 <= x <= 500Response
Bundle quote for the resolved day.
UTC effective calendar day the paid route would return.
Same as dateUsed for single-day responses.
Same as dateUsed for single-day responses.
Server timestamp when the quote was generated.
Number of stock-pick rows the paid route would return.
x >= 0Distinct attributed source posts charged in the bundle.
x >= 0Exact bundle total the paid route charges (STOCK_PICKS_ARTICLE_PRICE_USD × distinct attributed source posts).
Per-attributed-post price breakdown (no pick rows or tickers).
Show child attributes
Show child attributes

