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": "twitter.com",
"Description": "From breaking news and entertainment to sports and politics, get the full story with all the live commentary.",
"TopCountryShares": [
{
"Country": 392,
"CountryCode": "JP",
"Value": 0.3886359126251819
}
],
"Title": "X. It’s what’s happening",
"Engagments": {
"BounceRate": "0.626620066147028",
"Month": "3",
"Year": "2025",
"PagePerVisit": "4.291857840125687",
"Visits": "108138913",
"TimeOnSite": "116.0778597932444"
}
}
}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": "twitter.com",
"Description": "From breaking news and entertainment to sports and politics, get the full story with all the live commentary.",
"TopCountryShares": [
{
"Country": 392,
"CountryCode": "JP",
"Value": 0.3886359126251819
}
],
"Title": "X. It’s what’s happening",
"Engagments": {
"BounceRate": "0.626620066147028",
"Month": "3",
"Year": "2025",
"PagePerVisit": "4.291857840125687",
"Visits": "108138913",
"TimeOnSite": "116.0778597932444"
}
}
}curl "https://api.crawlora.net/api/v1/similarweb/web/<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"