curl --request GET \
--url https://dripstack.com/api/v2/stock-picksimport requests
url = "https://dripstack.com/api/v2/stock-picks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v2/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/v2/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/v2/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/v2/stock-picks")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v2/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{
"meta": {
"plan": "FREE",
"allowedRange": {
"from": "<string>",
"to": "<string>"
},
"appliedRange": {
"from": "<string>",
"to": "<string>"
},
"requestAllowance": 123,
"asOf": "<string>"
},
"pagination": {
"count": 1,
"nextCursor": "<string>"
},
"picks": [
{
"date": "<string>",
"ticker": "<string>",
"direction": "LONG",
"action": "<string>",
"author": "<string>",
"articleUrl": "<string>",
"conviction": 3,
"convictionLabel": "<string>",
"evidenceQuote": "<string>",
"publishedAt": "<string>",
"publicationSlug": "<string>",
"publicationTitle": "<string>",
"rationaleSnippet": "<string>",
"prices": {
"entry": 123,
"current": 123,
"returnPct": 123
}
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 402,
"detail": "<string>",
"challengeId": "<string>"
}V2 — Stock picks with subscription access or x402 pay-per-use.
V2 (recommended over V1). Tier-aware stock-picks API. Bearer API key / JWT / OAuth resolves the subscription first: EXPERT sees full history, PRO is clamped to the live 7-day window, and neither is ever charged for requests their plan covers. Anonymous callers and FREE subscribers get no free API access — they go through the same x402/MPP pay-per-use flow as V1 (dated bundle priced at the flat unit × distinct attributed source articles). Filters, search, sorting, and range pagination are available to paid tiers; the paid flow accepts date/limit only, mirroring V1. Out-of-window explicit date returns 403; out-of-window ranges are silently clamped (see meta.appliedRange).
curl --request GET \
--url https://dripstack.com/api/v2/stock-picksimport requests
url = "https://dripstack.com/api/v2/stock-picks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v2/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/v2/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/v2/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/v2/stock-picks")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v2/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{
"meta": {
"plan": "FREE",
"allowedRange": {
"from": "<string>",
"to": "<string>"
},
"appliedRange": {
"from": "<string>",
"to": "<string>"
},
"requestAllowance": 123,
"asOf": "<string>"
},
"pagination": {
"count": 1,
"nextCursor": "<string>"
},
"picks": [
{
"date": "<string>",
"ticker": "<string>",
"direction": "LONG",
"action": "<string>",
"author": "<string>",
"articleUrl": "<string>",
"conviction": 3,
"convictionLabel": "<string>",
"evidenceQuote": "<string>",
"publishedAt": "<string>",
"publicationSlug": "<string>",
"publicationTitle": "<string>",
"rationaleSnippet": "<string>",
"prices": {
"entry": 123,
"current": 123,
"returnPct": 123
}
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 402,
"detail": "<string>",
"challengeId": "<string>"
}Query Parameters
UTC calendar day to return (mutually exclusive with from/to). Outside a subscriber's plan window this returns 403.
^\d{4}-\d{2}-\d{2}$Range start (inclusive). Intersected with the subscriber's allowed window — a Pro request for from=2020-01-01 is clamped to the start of the Pro window.
^\d{4}-\d{2}-\d{2}$Range end (inclusive). Also intersected with the subscriber's allowed window.
^\d{4}-\d{2}-\d{2}$Maximum pick rows per day (1-500). Defaults to 200.
1 <= x <= 500Maximum days returned per range page (1-30). Pass the previous response's pagination.nextCursor as cursor to fetch older days.
1 <= x <= 30Older-than marker: return days strictly before this date (the previous page's pagination.nextCursor).
^\d{4}-\d{2}-\d{2}$Exact author name filter (paid tiers only).
100Direction filter (paid tiers only).
LONG, SHORT Case-insensitive substring over ticker, author, and publication title (paid tiers only).
200Order by pick date (and publish time within a day).
newest, oldest Pass false to omit per-ticker performance (entry → latest close, direction-adjusted). On by default.
true, false 
