List curated newsletters, podcasts, and publications.
curl --request GET \
--url https://dripstack.com/api/v1/publicationsimport requests
url = "https://dripstack.com/api/v1/publications"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/publications', 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/publications",
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/publications"
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/publications")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/publications")
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{
"publications": [
{
"slug": "stratechery",
"title": "Stratechery",
"description": "Analysis of the strategy and business of technology.",
"siteUrl": "https://stratechery.com",
"lastSyncedAt": "2026-06-15T08:30:00Z"
},
{
"slug": "the-pragmatic-engineer",
"title": "The Pragmatic Engineer",
"description": "Software engineering and Big Tech deep dives.",
"siteUrl": "https://blog.pragmaticengineer.com",
"lastSyncedAt": "2026-06-15T06:00:00Z"
}
]
}Publications
List curated newsletters, podcasts, and publications.
GET
/
api
/
v1
/
publications
List curated newsletters, podcasts, and publications.
curl --request GET \
--url https://dripstack.com/api/v1/publicationsimport requests
url = "https://dripstack.com/api/v1/publications"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dripstack.com/api/v1/publications', 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/publications",
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/publications"
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/publications")
.asString();require 'uri'
require 'net/http'
url = URI("https://dripstack.com/api/v1/publications")
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{
"publications": [
{
"slug": "stratechery",
"title": "Stratechery",
"description": "Analysis of the strategy and business of technology.",
"siteUrl": "https://stratechery.com",
"lastSyncedAt": "2026-06-15T08:30:00Z"
},
{
"slug": "the-pragmatic-engineer",
"title": "The Pragmatic Engineer",
"description": "Software engineering and Big Tech deep dives.",
"siteUrl": "https://blog.pragmaticengineer.com",
"lastSyncedAt": "2026-06-15T06:00:00Z"
}
]
}Response
200 - application/json
List of publications.
All indexed publications.
Show child attributes
Show child attributes
⌘I

