Publications API
Get complete metadata for any Substack publication. Returns the name, description, logo URL, hero image, custom domain info, and full author list. Supports both publication slugs (e.g. "platformer") and custom domains.
GET/v1/publications/:slug
Highlights
Publication name, tagline, and full description
Logo and hero image URLs
Custom domain detection and resolution
Complete author list with profile details
Subscriber count indicators
Works with any public Substack publication
Code Example
javascript
const res = await fetch(
"https://stackhooks.com/v1/publications/platformer",
{ headers: { Authorization: "Bearer sk_live_..." } }
);
const { data } = await res.json();
console.log(data.name); // "Platformer"
console.log(data.author_count); // 1Response
json
{
"data": {
"slug": "platformer",
"name": "Platformer",
"description": "Big Tech and its consequences",
"logo_url": "https://...",
"hero_image": "https://...",
"author_count": 1,
"authors": [
{ "name": "Casey Newton", "handle": "caseynewton" }
]
}
}Related
Posts API
Fetch a paginated feed of posts from any Substack publication. Each post includes title, subtitle, p...
Authors API
Get deduplicated author profiles for any Substack publication. Each author includes their name, hand...
Newsletter Analytics
Track publication growth, posting frequency, engagement trends, and author activity across Substack ...
Start building today
Create a free account and start pulling structured Substack data in minutes.