Skip to main content
GET
/
v1
/
agent-sites
/
domain
/
{domain}
curl -X GET "https://api.danubeai.com/v1/agent-sites/domain/stripe.com"
{
  "id": "site_abc123",
  "domain": "stripe.com",
  "url": "https://stripe.com",
  "status": "live",
  "visibility": "public",
  "page_title": "Stripe | Payment Processing Platform",
  "page_description": "Online payment processing for internet businesses",
  "components": {
    "contact": {
      "emails": ["support@stripe.com"],
      "social": {"twitter": "https://twitter.com/stripe"}
    },
    "about": {
      "company_name": "Stripe",
      "description": "Financial infrastructure for the internet",
      "industry": "fintech"
    },
    "docs": {
      "url": "https://docs.stripe.com",
      "api_reference": "https://docs.stripe.com/api"
    },
    "pricing": {
      "url": "https://stripe.com/pricing",
      "plans": [
        {
          "name": "Standard",
          "price": "2.9% + 30c per transaction",
          "features": ["Cards", "Wallets", "Bank debits"]
        }
      ]
    }
  },
  "discovered_tools": [],
  "category": "finance",
  "tags": ["payments", "api"],
  "created_at": "2026-01-10T08:00:00Z"
}

Overview

Retrieves a site’s full structured data by domain name. Returns the extracted components (contact, about, pricing, docs, FAQ, etc.) that AI agents can consume directly. Only returns live, public sites. No authentication required.

Path Parameters

domain
string
required
The site domain (e.g., stripe.com)

Response

id
string
Unique site identifier
domain
string
Site domain
url
string
Full URL that was crawled
status
string
Site status
visibility
string
public or private
page_title
string
Page title
page_description
string
Page meta description
components
object
Structured site components extracted by AI analysis
discovered_tools
array
Auto-generated tool schemas from the site
category
string
Site category
tags
array
Site tags

Example

curl -X GET "https://api.danubeai.com/v1/agent-sites/domain/stripe.com"
{
  "id": "site_abc123",
  "domain": "stripe.com",
  "url": "https://stripe.com",
  "status": "live",
  "visibility": "public",
  "page_title": "Stripe | Payment Processing Platform",
  "page_description": "Online payment processing for internet businesses",
  "components": {
    "contact": {
      "emails": ["support@stripe.com"],
      "social": {"twitter": "https://twitter.com/stripe"}
    },
    "about": {
      "company_name": "Stripe",
      "description": "Financial infrastructure for the internet",
      "industry": "fintech"
    },
    "docs": {
      "url": "https://docs.stripe.com",
      "api_reference": "https://docs.stripe.com/api"
    },
    "pricing": {
      "url": "https://stripe.com/pricing",
      "plans": [
        {
          "name": "Standard",
          "price": "2.9% + 30c per transaction",
          "features": ["Cards", "Wallets", "Bank debits"]
        }
      ]
    }
  },
  "discovered_tools": [],
  "category": "finance",
  "tags": ["payments", "api"],
  "created_at": "2026-01-10T08:00:00Z"
}

MCP Tool

This endpoint is also available as the get_site_info MCP tool:
result = await mcp.call_tool("get_site_info", {
    "domain": "stripe.com"
})