Skip to content
GET /v1/podcasts

Published podcast episodes on DEV

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/devto-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/devto-api/v1/podcasts" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/devto-api/v1/podcasts", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/devto-api/v1/podcasts");
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/devto-api/v1/podcasts",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "page": 1,
        "count": 20,
        "episodes": [
            {
                "id": 82680,
                "slug": null,
                "title": "S27:E8 - Learning AI (Matt Eland)",
                "podcast": {
                    "slug": "codenewbie",
                    "title": "CodeNewbie",
                    "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
                },
                "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
            },
            {
                "id": 82687,
                "slug": null,
                "title": "ICD Weekend #25 – Facebook podsłuchuje Snapchata • nowe sposoby na oszukiwanie AI",
                "podcast": {
                    "slug": "icdpl",
                    "title": "Internet! Czas działać (polish)",
                    "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/578/c0bcc435-8bbf-4246-a1ab-c20cefb76492.png"
                },
                "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/578/c0bcc435-8bbf-4246-a1ab-c20cefb76492.png"
            },
            {
                "id": 82681,
                "slug": null,
                "title": "S27:E7 - Tech and Art (Chris Immel)",
                "podcast": {
                    "slug": "codenewbie",
                    "title": "CodeNewbie",
                    "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
                },
                "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
            },
            {
                "id": 82685,
                "slug": null,
                "title": "ICD Weekend #24 - Pay Or OK? Wytyczne EROD",
                "podcast": {
                    "slug": "icdpl",
                    "title": "Internet! Czas działać (polish)",
                    "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/578/c0bcc435-8bbf-4246-a1ab-c20cefb76492.png"
                },
                "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/578/c0bcc435-8bbf-4246-a1ab-c20cefb76492.png"
            },
            {
                "id": 82682,
                "slug": null,
                "title": "S27:E6 - The Crossover of Health, Technology and Art (Daniel Bourke)",
                "podcast": {
                    "slug": "codenewbie",
                    "title": "CodeNewbie",
                    "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
                },
                "image_url": "https://dev-to-uploads.s3.amazonaws.com/uploads/podcast/image/2/2e7a90b5-76bd-4b0f-ae36-11d0f7f4b054.jpg"
        
…