Endpoint Playground
Test Crawlora's Get SimilarWeb Web Info API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/similarweb/web/<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| domain (path) | string | Yes | Domain to fetch SimilarWeb data for |
{
"code": 200,
"msg": "OK",
"data": {
"Version": 1,
"SiteName": "openai.com",
"Description": "We believe our research will eventually lead to artificial general intelligence.",
"TopCountryShares": [
{
"Country": 840,
"CountryCode": "US",
"Value": 0.2119
}
],
"Title": "OpenAI",
"Engagments": {
"BounceRate": "0.478",
"Month": "7",
"Year": "2026",
"PagePerVisit": "2.31",
"Visits": "128455321",
"TimeOnSite": "103.5"
},
"AiTrafficDetails": {
"TotalVisits": 40471810.45,
"ReferralTraffic": 0.20555688559222743,
"TopPrompts": {
"Status": 0,
"ErrorMessage": "",
"Prompts": [
"What are the main differences between current large language model architectures?"
]
},
"Traffic": {
"Split": [
{
"Name": "chatgpt.com",
"Rank": 1,
"Icon": "/image?url=chatgpt.com"
}
],
"Distribution": {
"Boundary": "<100M",
"Chatbots": [
{
"Name": "chatgpt.com",
"Icon": "/image?url=chatgpt.com",
"Value": 84.77
}
],
"Chart": [
{
"Name": "chatgpt.com",
"Icon": "/image?url=chatgpt.com",
"History": [
{
"Date": "2026-07-01",
"Value": 84.77
}
]
}
]
}
}
},
"DataSource": "extension_api"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns traffic and engagement data from SimilarWeb for a specific domain.
{
"code": 200,
"msg": "OK",
"data": {
"Version": 1,
"SiteName": "openai.com",
"Description": "We believe our research will eventually lead to artificial general intelligence.",
"TopCountryShares": [
{
"Country": 840,
"CountryCode": "US",
"Value": 0.2119
}
],
"Title": "OpenAI",
"Engagments": {
"BounceRate": "0.478",
"Month": "7",
"Year": "2026",
"PagePerVisit": "2.31",
"Visits": "128455321",
"TimeOnSite": "103.5"
},
"AiTrafficDetails": {
"TotalVisits": 40471810.45,
"ReferralTraffic": 0.20555688559222743,
"TopPrompts": {
"Status": 0,
"ErrorMessage": "",
"Prompts": [
"What are the main differences between current large language model architectures?"
]
},
"Traffic": {
"Split": [
{
"Name": "chatgpt.com",
"Rank": 1,
"Icon": "/image?url=chatgpt.com"
}
],
"Distribution": {
"Boundary": "<100M",
"Chatbots": [
{
"Name": "chatgpt.com",
"Icon": "/image?url=chatgpt.com",
"Value": 84.77
}
],
"Chart": [
{
"Name": "chatgpt.com",
"Icon": "/image?url=chatgpt.com",
"History": [
{
"Date": "2026-07-01",
"Value": 84.77
}
]
}
]
}
}
},
"DataSource": "extension_api"
}
}curl "https://api.crawlora.net/api/v1/similarweb/web/<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"