Get the social media data for a podcast
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/:podcastIdOrSlug/social-media", options)
10 .then(response => response.json())
11 .then(data => console.log(data))
12 .catch(error => console.error('Error:', error));
Property | Type | Description |
---|---|---|
podcastIdOrSlug | string | Podengine ID, Apple ID, or slug |
Property | Type | Description |
---|---|---|
status | literal: OK | |
data | object | |
└podcast | object | |
└authornullable | string | |
└genres | array of string | |
└id | string | |
└imageUrlnullable | string | |
└language | string | |
└lastEpisodePublishedAt | date | |
└slug | string | |
└title | string | |
└socialMediaData | object | |
└podcastId | string | |
└socialMediaLinks | array of object | |
└socialMediaType | enum | |
└url | string | |
└sources | ||
└facebookPageData | array of object | |
└facebookPageId | string | |
└profilePhotoUrlnullable | string | |
└name | string | |
└followers | number | |
└likes | number | |
└following | number | |
└talkingAboutCountnullable | number | |
└facebookPageUrl | string | |
└scrapedAt | date | |
└instagramData | array of object | |
└profileId | number | |
└followers | number | |
└following | number | |
└posts | number | |
└instagramProfileName | string | |
└scrapedAt | date | |
└linkedInCompanyData | array of object | |
└scrapedAt | date | |
└linkedInUrl | string | |
└name | string | |
└countryCodenullable | string | |
└followers | number | |
└employeesInLinkedin | number | |
└aboutnullable | string | |
└descriptionnullable | string | |
└companySizenullable | string | |
└industriesnullable | string | |
└logoImageUrlnullable | string | |
└mostRecentUpdatenullable | object | |
└postId | string | |
└likesCount | number | |
└commentsCount | number | |
└title | string | |
└text | string | |
└postUrl | string | |
└date | date | |
└linkedInPersonData | array of object | |
└name | string | |
└linkedInProfileId | string | |
└linkedInNumericId | number | |
└avatarUrlnullable | string | |
└citynullable | string | |
└countryCodenullable | string | |
└descriptionnullable | string | |
└aboutnullable | string | |
└locationnullable | string | |
└followerCount | number | |
└connectionsCount | number | |
└recommendationsCount | number | |
└scrapedAt | date | |
└tiktokData | array of object | |
└accountId | string | |
└awgEngagementRatenullable | number | |
└biographynullable | string | |
└commentEngagementRatenullable | number | |
└dateJoined | date | |
└followers | number | |
└following | number | |
└isPrivate | boolean | |
└isVerified | boolean | |
└likeEngagementRatenullable | number | |
└likes | number | |
└nickname | string | |
└profilePicUrlnullable | string | |
└videosCount | number | |
└twitterData | array of object | |
└profileId | string | |
└profileName | string | |
└profileUrl | string | |
└profileImageUrlnullable | string | |
└biographynullable | string | |
└followingCount | number | |
└followerCount | number | |
└postsCount | number | |
└dateJoined | date | |
└youtubeData | array of object | |
└id | string | |
└title | string | |
└description | string | |
└subscriberCount | number | |
└viewCount | number | |
└videoCount | number | |
└publishedAt | date | |
└thumbnails | object | |
└defaultnullable | string | |
└mediumnullable | string | |
└highnullable | string | |
└countrynullable | string | |
└customUrlnullable | string | |
└linksnullable | array of string |