Appearance
Site Similar
GET /site-similar
Retrieves related websites, competitor domains, traffic totals, ranking data, image metadata, and category classifications for a target domain.
For users migrating from the legacy RapidAPI similar-sites response, see the v1 to v2 migration guide.
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-similar?url=github.com" \
-H "Authorization: Bearer YOUR_DATABEE_API_KEY"Response Schema (200 OK)
json
{
"status": "success",
"meta": {
"request": { "url": "github.com" },
"website": "github.com",
"data_coverage": "complete"
},
"website": {
"domain": "github.com",
"title": "GitHub · Build and ship software on a single, collaborative platform",
"description": "Join the world's most widely adopted, AI-powered developer platform...",
"category": {
"slug": "Computers_Electronics_and_Technology/Programming_and_Developer_Software",
"name": "Computers Electronics and Technology > Programming and Developer Software"
},
"tags": ["ruby", "ruby on rails", "github"],
"images": {
"favicon_url": "https://site-images.similarcdn.com/image?url=github.com&t=2",
"screenshot_desktop_url": "https://site-images.similarcdn.com/image?url=github.com&t=1",
"screenshot_mobile_url": "https://site-images.similarcdn.com/image?url=github.com&t=4"
}
},
"rankings": {
"global": { "rank": null },
"country": {
"country_code": "US",
"country_name": "United States of America",
"rank": 90
},
"category": {
"category_slug": "Computers_Electronics_and_Technology/Programming_and_Developer_Software",
"rank": 4
}
},
"traffic": {
"total_visits": 513197610.36
},
"similar_sites": [
{
"domain": "stackoverflow.com",
"title": "Newest Questions",
"description": "Stack Overflow | The World’s Largest Online Community for Developers",
"rankings": {
"global": { "rank": 978 },
"country": {
"country_code": "US",
"country_name": "United States of America",
"rank": 968
},
"category": { "category_slug": null, "rank": 39 }
},
"traffic": { "total_visits": 69124392.197 },
"images": {
"favicon_url": "https://site-images.similarcdn.com/image?url=stackoverflow.com&t=2&h=04179ebf8566da481b023bba12856a0748752b1e4a75d1b145220282ef93f21c",
"screenshot_desktop_url": "https://site-images.similarcdn.com/image?url=stackoverflow.com&t=1&h=04179ebf8566da481b023bba12856a0748752b1e4a75d1b145220282ef93f21c",
"screenshot_mobile_url": "https://site-images.similarcdn.com/image?url=stackoverflow.com&t=4&h=04179ebf8566da481b023bba12856a0748752b1e4a75d1b145220282ef93f21c"
}
}
]
}