/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/substack-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/substack-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/substack-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/substack-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Substack public per-publication API (live)",
"service": "substack-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/post": "One post in full with excerpt (publication=, slug=…).",
"GET /v1/posts": "A publication's recent or top posts (publication=noahpinion, sort=new|top, limit up to 50).",
"GET /v1/search": "Search a publication's archive (publication=, q=economics)."
},
"description": "Live data for any Substack publication from its own public API: a publication's recent or top posts with title, subtitle, publish date, type (newsletter/podcast/thread), audience (free/paid), heart-reaction count, comment count, word count and cover image; search a publication's archive by keyword; or fetch one post in full with a plain-text excerpt. Point it at a Substack subdomain (noahpinion) or a custom domain (astralcodexten.com). Live, no key, nothing stored. Distinct from dev-community and microblog APIs — this is Substack newsletter posts and their engagement.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:39:48.286Z",
"request_id": "3d39cf03-eae4-4831-873b-11abfdcf8aa5"
},
"status": "ok",
"message": "Meta",
"success": true
}