Authors API
Get deduplicated author profiles for any Substack publication. Each author includes their name, handle, photo URL, and bio. Authors are cross-referenced across all posts for accurate contribution tracking.
GET/v1/publications/:slug/authors
Highlights
Deduplicated author profiles
Name, handle, and bio text
Profile photo URL
Cross-referenced across all publication posts
Publication role and join date
Works with multi-author publications
Code Example
javascript
const res = await fetch(
"https://stackhooks.com/v1/publications/platformer/authors",
{ headers: { Authorization: "Bearer sk_live_..." } }
);
const { data } = await res.json();
data.forEach(author => {
console.log(`${author.name} (@${author.handle})`);
});Response
json
{
"data": [
{
"name": "Casey Newton",
"handle": "caseynewton",
"photo_url": "https://...",
"bio": "Technology journalist covering platforms"
}
]
}Related
Publications API
Get complete metadata for any Substack publication. Returns the name, description, logo URL, hero im...
Posts API
Fetch a paginated feed of posts from any Substack publication. Each post includes title, subtitle, p...
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.