Lookup a podcast by ID
This endpoint requires an API token. You can learn more about how to get an API token from the authentication page.
1const options = {
2 method: "GET",
3 headers: {
4 "Content-Type": "application/json",
5 "Authorization": "YOUR_API_TOKEN"
6 }
7};
8
9fetch("https://api.podengine.ai/api/v1/podcasts/id/lookup?appleId=315114957", options)
10 .then(response => response.json())
11 .then(data => console.log(data))
12 .catch(error => console.error('Error:', error));
Only one of the parameters can be provided.
Property | Type | Description |
---|---|---|
appleIdoptional | number | Apple Podcasts ID |
spotifyIdoptional | string | Spotify ID |
slugoptional | string | The Pod Engine slug of the podcast |
podEngineIdoptional | string | The Pod Engine id of the podcast |
Property | Type | Description |
---|---|---|
status | literal: OK | |
data | object | |
└podcastnullable | object | |
└authornullable | string | |
└genres | array of string | |
└id | string | |
└imageUrlnullable | string | |
└language | string | |
└lastEpisodePublishedAt | date | |
└slug | string | |
└title | string |