Appearance
Site Overview
GET /site-overview
Retrieves comprehensive domain metrics including visit history, engagement, bounce rate, pages per visit, global/country/category ranks, top traffic geography, SEO keywords, and AI referral traffic (ChatGPT, Gemini, Claude, etc.).
Query Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
url | string | Yes | Fully qualified domain name or domain string | github.com |
Example Request
bash
curl -X GET "https://api.databee.dev/siteatlas/site-overview?url=github.com" \
-H "Authorization: Bearer YOUR_DATABEE_API_KEY"Response Schema (200 OK)
This example follows the canonical SiteOverviewResponse contract used by the OpenAPI specification and the full API reference. Traffic values are estimates unless traffic.is_data_from_ga is true, and the snapshot/reporting dates should be shown to end users.
json
{
"status": "success",
"meta": {
"request": {
"url": "github.com"
},
"snapshot_date": "2026-07-01",
"data_coverage": "complete"
},
"website": {
"domain": "github.com",
"title": "GitHub · Change is constant. GitHub keeps you ahead.",
"description": "Join the world's most widely adopted, AI-powered developer platform where millions of developers, businesses, and the largest open source community build software that advances humanity.",
"category": {
"slug": "computers_electronics_and_technology/programming_and_developer_software",
"name": "Computers Electronics and Technology > Programming and Developer Software"
},
"images": {
"favicon_url": "https://site-images.similarcdn.com/image?url=github.com&h=6525c30f1af9ea5ee8912788b611744e1debcba39a2d0dd3d410b2916169883b&t=2",
"screenshot_desktop_url": "https://site-images.similarcdn.com/image?url=github.com&h=6525c30f1af9ea5ee8912788b611744e1debcba39a2d0dd3d410b2916169883b&t=1",
"screenshot_mobile_url": "https://site-images.similarcdn.com/image?url=github.com&h=6525c30f1af9ea5ee8912788b611744e1debcba39a2d0dd3d410b2916169883b&t=4"
},
"flags": {
"is_small_site": false,
"is_from_google_analytics": false
}
},
"rankings": {
"global": {
"rank": 49
},
"country": {
"country_code": "US",
"rank": 79
},
"category": {
"category_slug": "computers_electronics_and_technology/programming_and_developer_software",
"rank": 4
},
"global_category": null
},
"traffic": {
"is_data_from_ga": false,
"history": [
{ "month": "2026-05-01", "visits": 636075828 },
{ "month": "2026-06-01", "visits": 615239605 },
{ "month": "2026-07-01", "visits": 637885711 }
],
"engagement": {
"pages_per_visit": 5.87,
"bounce_rate": 0.363,
"average_visit_duration_seconds": 386.157
},
"sources_share": {
"direct": 0.5233,
"organic_search": 0.2511,
"paid_search": 0.0002,
"organic_social": 0.0916,
"paid_social": 0.0013,
"email": 0.0116,
"referrals": 0.0974,
"generative_ai": 0.0208,
"affiliate": 0,
"display_ads": 0.0026
},
"geography_share": [
{ "country_code": "US", "share": 0.1943 },
{ "country_code": "CN", "share": 0.1091 },
{ "country_code": "IN", "share": 0.1044 },
{ "country_code": "RU", "share": 0.0804 },
{ "country_code": "DE", "share": 0.0407 }
],
"period": "2026-07"
},
"seo": {
"top_keywords": [
{
"keyword": "github",
"search_volume": 9503160,
"cpc_usd": 1.66,
"estimated_value_usd": 10930450
},
{
"keyword": "zapret",
"search_volume": 597690,
"cpc_usd": 0.86,
"estimated_value_usd": 702890
},
{
"keyword": "github desktop",
"search_volume": 306030,
"cpc_usd": 2.09,
"estimated_value_usd": 438200
},
{
"keyword": "запрет дискорд ютуб",
"search_volume": 139220,
"cpc_usd": null,
"estimated_value_usd": 437770
},
{
"keyword": "запрет",
"search_volume": 253170,
"cpc_usd": null,
"estimated_value_usd": 437690
}
]
},
"ai_referrals": {
"total_visits": 11619886,
"global_traffic_share": 0.0187,
"platforms": [
{
"name": "chatgpt.com",
"rank": 1,
"share": 58.6502,
"history": [
{ "month": "2026-05", "share": 58.462 },
{ "month": "2026-06", "share": 55.4085 },
{ "month": "2026-07", "share": 58.6502 }
]
},
{
"name": "gemini.google.com",
"rank": 2,
"share": 18.4489,
"history": [
{ "month": "2026-05", "share": 14.314 },
{ "month": "2026-06", "share": 15.987 },
{ "month": "2026-07", "share": 18.4489 }
]
},
{
"name": "claude.ai",
"rank": 3,
"share": 16.2959,
"history": [
{ "month": "2026-05", "share": 13.5879 },
{ "month": "2026-06", "share": 15.3942 },
{ "month": "2026-07", "share": 16.2959 }
]
},
{ "name": "perplexity.ai", "rank": 4, "share": 0, "history": [] },
{ "name": "chat.deepseek.com", "rank": 5, "share": 0, "history": [] },
{ "name": "grok.com", "rank": 6, "share": 0, "history": [] },
{ "name": "copilot.microsoft.com", "rank": 7, "share": 0, "history": [] }
],
"top_prompts": [
"How do I create a new remote repository, push an existing local project to it, and manage branches using a distributed version control platform?",
"What are the key differences between using a hosted code repository service versus self-hosting for collaborative source control, and which is better for small teams?",
"Can you provide a step-by-step guide to forking a project, making changes in a feature branch, and creating a pull request to propose those changes to the original repository?"
]
}
}Interactive Playground
Interactive API Playground
Test live endpoints and generate code snippets
Generate free API key at console.databee.dev
curl -X GET "https://api.databee.dev/siteatlas/site-overview?url=github.com" \
-H "Authorization: Bearer YOUR_DATABEE_API_KEY"