Skip to main content
GET
/
v1
/
agent-sites
/
{site_id}
curl -X GET "https://api.danubeai.com/v1/agent-sites/site_abc123"
{
  "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": {
    "about": {
      "company_name": "Stripe",
      "description": "Financial infrastructure for the internet"
    }
  },
  "discovered_tools": [],
  "category": "finance",
  "tags": ["payments"],
  "created_at": "2026-01-10T08:00:00Z",
  "updated_at": "2026-01-12T14:00:00Z"
}

Overview

Retrieves a site by its UUID. Live sites are accessible to anyone. Non-live sites (pending, crawling, analyzing, review) are only accessible to the site owner.

Path Parameters

site_id
string
required
The site UUID

Response

Returns an AgentSiteResponse object. See Get Site by Domain for the full response shape including components.

Example

curl -X GET "https://api.danubeai.com/v1/agent-sites/site_abc123"
{
  "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": {
    "about": {
      "company_name": "Stripe",
      "description": "Financial infrastructure for the internet"
    }
  },
  "discovered_tools": [],
  "category": "finance",
  "tags": ["payments"],
  "created_at": "2026-01-10T08:00:00Z",
  "updated_at": "2026-01-12T14:00:00Z"
}