Domain Social Media API: Profiles From a URL
A domain social media API returns the public profile URLs a website publishes — Facebook, X, Instagram, YouTube, LinkedIn — as JSON. On Klazify that is POST https://www.klazify.com/api/domain_social_media with Bearer auth and JSON {"url":"https://cbsnews.com"}. Official docs sample is dated 2026-03-10.
Starter is $39.99/mo (500 successful calls) with a 7-day trial. Failed or unreachable URLs are not billed. refresh=true re-scrapes (Starter can send it). MCP: mcp.klazify.com (GET /mcp is 405; POST JSON-RPC). Docs: klazify.com/api-docs.
Use cases
- CRM enrichment. Store the company domain, then persist
facebook_url/twitter_urlon the account. - Outreach list. Skip rows where every social key is
null. - Watchlist. Re-fetch with
refresh=truewhen a brand changes handles.
Request: official CBS News URL
curl -X POST "https://www.klazify.com/api/domain_social_media" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://cbsnews.com"}'
Response: official docs sample
{
"domain": {
"domain_url": "https://cbsnews.com",
"social_media": {
"facebook_url": "https://facebook.com/CBSNews",
"twitter_url": "https://twitter.com/CBSNews",
"instagram_url": "https://instagram.com/cbsnews",
"youtube_url": "https://youtube.com/CBSNews",
"linkedin_url": null,
"github_url": null,
"pinterest_url": null,
"medium_url": null
},
"updated_at": "2026-03-10T12:00:00Z"
},
"success": true
}
Missing networks are null, not omitted. This is not a follower-count API.
Go live
1. Register — 7-day trial.
2. Copy the Bearer key.
3. POST /api/domain_social_media.
4. Persist non-null URLs.
Ready to use Klazify?
Start classifying websites, enriching company data, and exploring web intelligence.
Get Started Free