curl --request GET \
--url https://dripstack.com/api/v1/stock-picksimport requests
url = "https://dripstack.com/api/v1/stock-picks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/stock-picks', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/stock-picks")
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,
"items": [
{
"id": "sp_abc123",
"callId": "call_def456",
"author": "Luke Gromen",
"articleTitle": "The Dollar Endgame",
"articleUrl": "https://thefr.substack.com/p/dollar-endgame",
"publishedAt": "2026-06-14T09:00:00Z",
"ticker": "GLD",
"tickerExchange": "NYSE",
"instrumentType": "ETF",
"action": "NEW_POSITION",
"direction": "LONG",
"authorConviction": 4,
"convictionLabel": "High",
"activePick": true,
"evidenceQuote": "Gold remains the only asset that balances sovereign balance sheet risk.",
"rationaleSnippet": "Rising fiscal deficits and de-dollarization trends support gold allocation.",
"publicationSlug": "the-fr",
"postSlug": "dollar-endgame"
}
]
}{
"error": "<string>",
"issues": {}
}{
"type": "<string>",
"title": "<string>",
"status": 402,
"detail": "<string>",
"challengeId": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}V1 — List stock-picker calls for one day (paid, legacy).
V1 (legacy — still available; prefer V2 /api/v2/stock-picks for new integrations). Returns structured stock-picker calls for AI-agent consumption. Covers one UTC effective calendar day, not a range. Defaults to the latest day with picks when date is omitted. Use date=YYYY-MM-DD for a specific day. Rows without publishedAt may use extraction time internally. Call the free quote route first to learn amountUsd. Returns 404 when no picks exist for the resolved day — do not pay on 404.
curl --request GET \
--url https://dripstack.com/api/v1/stock-picksimport requests
url = "https://dripstack.com/api/v1/stock-picks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/stock-picks', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/stock-picks")
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,
"items": [
{
"id": "sp_abc123",
"callId": "call_def456",
"author": "Luke Gromen",
"articleTitle": "The Dollar Endgame",
"articleUrl": "https://thefr.substack.com/p/dollar-endgame",
"publishedAt": "2026-06-14T09:00:00Z",
"ticker": "GLD",
"tickerExchange": "NYSE",
"instrumentType": "ETF",
"action": "NEW_POSITION",
"direction": "LONG",
"authorConviction": 4,
"convictionLabel": "High",
"activePick": true,
"evidenceQuote": "Gold remains the only asset that balances sovereign balance sheet risk.",
"rationaleSnippet": "Rising fiscal deficits and de-dollarization trends support gold allocation.",
"publicationSlug": "the-fr",
"postSlug": "dollar-endgame"
}
]
}{
"error": "<string>",
"issues": {}
}{
"type": "<string>",
"title": "<string>",
"status": 402,
"detail": "<string>",
"challengeId": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Headers
MPP (Payment HTTP Authentication Scheme): after HTTP 402, retry with Authorization: Payment <credential>.
x402 v2: after HTTP 402, retry with the encoded payment payload from the PAYMENT-REQUIRED challenge (same header name as in @x402/core HTTP transport).
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
Stock-picker calls after successful payment.
Single UTC effective calendar day returned (publishedAt, or extraction time internally when publication time is missing).
Same as dateUsed for single-day responses.
Same as dateUsed for single-day responses.
Server timestamp when the response was generated.
Number of stock-pick items returned.
x >= 0Stock-picker calls for the resolved single day.
Show child attributes
Show child attributes

