Agent guide

Domain Brand Profile API for AI agents

Turn a domain or URL into practical public brand facts for onboarding, landing pages, outreach, partner pages, API listings, and CRM enrichment. This agent guide explains when to call Domain Brand Profile API, when not to call it, which outputs to inspect, and how to route human users to RapidAPI or product docs.

When an agent should call this API

  • 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 a focused public-domain profile before a longer enrichment or onboarding workflow.
  • You need logo, favicon, OpenGraph, and social-link hints without buying a full enrichment product.

Do not call it for

  • Not a firmographic or legal-entity database.
  • Not a private-company crawler or paid data broker replacement.
  • Not a guarantee that homepage metadata is complete or permanent.

First call for agents

Use the smallest request, then inspect named outputs.

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
}'

Prefer marketplace auth? Open in RapidAPI for plans, keys, and interactive testing.

Response fields to inspect

{
  "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"]
}