Skip to main content
GET https://cds.thepublive.com/publisher/{publisher_id}/footer/ Returns the footer configuration including social links, quick menu items, affiliate websites, and branding options.

Headers

NameTypeRequiredDescription
usernamestringYesAPI Key
passwordstringYesAPI Secret

Response Fields

FieldTypeDescription
logostring/nullFooter logo URL
app_linksobjectApp download links (iOS, Android, Web)
short_biostringShort publisher description
textColorstringFooter text color (hex)
accentColorstringFooter accent color (hex)
newsletterbooleanWhether newsletter signup is enabled
socialLinksarraySocial media links
addQuickMenuarrayQuick navigation links
copyRightTextstringCopyright notice text
latestStoriesbooleanWhether to show latest stories
addAffiliateWebsitesarrayAffiliate/partner website links
{
  "status": "ok",
  "data": {
    "logo": "https://cdn.publive.com/logos/footer-logo.png",
    "app_links": {
      "ios": "https://apps.apple.com/app/mypub",
      "android": "https://play.google.com/store/apps/mypub",
      "web": "https://mypub.com"
    },
    "short_bio": "Your trusted source for news and insights.",
    "textColor": "#FFFFFF",
    "accentColor": "#3B82F6",
    "newsletter": true,
    "socialLinks": [
      {"platform": "twitter", "url": "https://twitter.com/mypub"},
      {"platform": "facebook", "url": "https://facebook.com/mypub"}
    ],
    "addQuickMenu": [
      {"label": "About Us", "url": "/about"},
      {"label": "Contact", "url": "/contact"},
      {"label": "Privacy Policy", "url": "/privacy"}
    ],
    "copyRightText": "© 2026 My Publication. All rights reserved.",
    "latestStories": true,
    "addAffiliateWebsites": []
  },
  "message": ""
}