Company Profile
Build a company profile from a domain — title, description, social links, tech.
GET
/v1/company-profile
curl "https://dns.toolkitapi.io/v1/company-profile?domain=github.com"
import httpx
resp = httpx.get(
"https://dns.toolkitapi.io/v1/company-profile?domain=github.com",
)
print(resp.json())
const resp = await fetch("https://dns.toolkitapi.io/v1/company-profile?domain=github.com", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"domain": "github.com",
"url": "https://github.com",
"title": "GitHub: Let's build from here",
"description": "GitHub is where over 100 million developers shape the future of software.",
"og_image": "https://github.githubassets.com/assets/social-card.png",
"favicon": "https://github.com/favicon.ico",
"language": "en",
"generator": null,
"canonical_url": "https://github.com",
"server": "GitHub.com",
"powered_by": null,
"social_links": {
"twitter": "https://twitter.com/github",
"linkedin": "https://linkedin.com/company/github",
"facebook": null,
"github": null,
"instagram": null,
"youtube": "https://youtube.com/github"
},
"status_code": 200,
"query_time_ms": 543.2
}
Try It Live
Live Demo
Response
Description
Build a company profile from a domain — title, description, social links, tech.
How to Use
1
1. Pass the domain in the `domain` parameter. 2. Get back structured metadata, social links, and technology details.
About This Tool
Company Profile fetches a domain's homepage and extracts a company profile including page title, meta description, OG image, favicon, language, social media links, server technology, and CMS/generator detection. Build a basic company dossier from just a domain name.
Why Use This Tool
- Lead enrichment — Auto-fill company data from a domain in your CRM
- Competitive analysis — Compare company descriptions and social presence
- Sales prospecting — Build prospect profiles from domain lists
- Brand monitoring — Track how your company appears to web crawlers
Frequently Asked Questions
What data is extracted?
HTML meta tags (title, description, OG), link elements (favicon, canonical), anchor tags (social links), and HTTP headers (server, powered-by).
Does this work for sites behind Cloudflare?
Yes — it makes a standard HTTP request. Sites that block bots may return limited data.
Start using Company Profile now
Get your free API key and make your first request in under a minute.