S
SEO analytics · v2
SiteAtlas API
Comprehensive website analysis with traffic, rankings, keywords, audience geography, and competitor discovery in one developer-friendly API.
Quick start
# Make your first request to SiteAtlas API curl -X GET \ 'https://api.databee.dev/siteatlas/v2/website-overview?url=github.com' \ -H 'Authorization: Bearer YOUR_API_KEY'
// Make your first request to SiteAtlas API using fetch
const response = await fetch('https://api.databee.dev/siteatlas/v2/website-overview?url=github.com', {
headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
const data = await response.json();
console.log(data); # Make your first request to SiteAtlas API using requests
import requests
response = requests.get(
'https://api.databee.dev/siteatlas/v2/website-overview?url=github.com',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
print(response.json()) // Make your first request to SiteAtlas API in Go
package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api.databee.dev/siteatlas/v2/website-overview?url=github.com", nil)
req.Header.Add("Authorization", "Bearer YOUR_API_KEY")
res, err := http.DefaultClient.Do(req)
if err != nil {
return
}
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
} Endpoints
3 Active Endpoints GET /v2/website-overview Everything you need to know about a website.
↗
GET /v2/similar-sites Websites related to a target website from SimilarSites data.
↗
GET /v2/country-metadata Country metadata for interpreting SiteAtlas responses.
↗
Overview & Capabilities
Comprehensive website analysis with traffic, rankings, keywords, audience geography, and competitor discovery in one developer-friendly API.
The SiteAtlas API provides high-speed, reliable programmatic access for website intelligence, traffic estimates, rankings, and competitor signals. Designed for seamless integration into dashboards, prospecting tools, SEO engines, and market research workflows.
- Direct access to live endpoint telemetry and clean JSON payloads
- Simple API Key authorization via HTTP Bearer token header
- Usage-based credit pricing with predictable rate limits
- Built for low latency and high availability across regional edge infrastructure