Domain enrichment

Get brand metadata from a domain

Turn a domain or URL into practical public brand facts for onboarding, landing pages, outreach, partner pages, API listings, and CRM enrichment.

Problem

A domain is often the first brand clue your workflow receives.

Signup forms, lead lists, landing-page builders, and partner directories often start with only a domain. A lightweight public metadata profile gives you a name, summary, homepage signal, OpenGraph fields, favicon/logo hints, and public social links without building a crawler pipeline.

When to use it

  • You need basic public brand facts before a person has filled out a long form.
  • You want domain enrichment for CRM records, onboarding screens, or internal admin tools.
  • You need logo, favicon, OpenGraph, and social-link hints without buying a full enrichment product.

First call

Run a small request and inspect the response.

curl -X POST 'https://domain-brand-profile-api.linkridge.net/v1/domain/profile' \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: <your-api-key>' \
  -d '{
  "domain": "example.com",
  "timeout_seconds": 3
}'

Use RapidAPI for marketplace auth, plans, and interactive testing.

Example response

{
  "domain": "example.com",
  "brand_name": "Example Co",
  "reachable": true,
  "homepage_url": "https://example.com/",
  "final_url": "https://example.com/",
  "resolved_ips": ["93.184.216.34"],
  "brand_summary": "Example Co makes better widgets for teams.",
  "title": "Example Co - Better Widgets",
  "description": "Example Co makes better widgets for teams.",
  "open_graph": {
    "site_name": "Example Co",
    "image": "https://example.com/og.png"
  },
  "logo_hint": "https://example.com/og.png",
  "icons": ["https://example.com/favicon.ico"],
  "social_links": ["https://www.linkedin.com/company/example-co"],
  "sources": ["dns", "homepage-html", "meta-tags", "links"]
}

Based on