podcast-privacy
API Docs
Base URL
https://api.podcast-privacy.com
Your API Key
Abilities List
["Stats", "Tracking", "Dynamic Audio"]
Get by Episode URL
/?epURL={Any episode URL from a podcast's RSS feed}
An example successful response. We leave it up to the developer to determine appropriate messaging for each ability.
[
    {
        "name": "Podtrac",
        "abilities": [
            "Stats"
        ],
        "privacyPolicyURL": "http://analytics.podtrac.com/consumer-privacy-policy"
    },
    {
        "name": "Chartable",
        "abilities": [
            "Stats",
            "Tracking"
        ],
        "privacyPolicyURL": "https://chartable.com/privacy"
    },
    {
        "name": "Art19",
        "abilities": [
            "Stats",
            "Tracking",
            "Dynamic Audio"
        ],
        "privacyPolicyURL": "https://art19.com/privacy",
        "logoURL": "https://cdn.podcast-privacy.com/logos/art19.png"
    }
]
When information about a podcast can not be found, an empty array will be returned. It's up to the developer whether or not to show any messaging when this data is unavailable.
[]
An error will be returned when a request is missing a key or epURL query parameter.
{
    "error": "Missing or invalid API key."
}