Endpoint Playground
Test Crawlora's Search SimilarWeb 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Domain or keyword to search |
{
"code": 200,
"msg": "OK",
"data": {
"apps": {
"googlePlay": [
{
"id": "com.google.android.apps.photos",
"name": "Google Photos",
"publisher": "Google LLC",
"appKey": "0_com.google.android.apps.photos",
"store": "google",
"ratings": 51693148
}
],
"appStore": [
{
"id": "507874739",
"name": "Google Drive",
"publisher": "Google LLC",
"appKey": "1_507874739",
"store": "apple",
"ratings": 6753918
}
]
},
"websites": [
{
"name": "google.com",
"image": "https://site-images.similarcdn.com/image?url=google.com&t=2&s=1&h=eb35e0fbafa3eb290132ffdfe47187d950d68daaa659ec1bd4b4e834b8f16461",
"isVirtual": false
}
],
"companies": [
{
"domain": "google.com",
"name": "Google, LLC",
"logoUrl": "https://static-us-east-1.similarcdn.com/si/company_data/merged_v2/firmographics_logos/bf9c398717b4c0c1ecee483a3c844e710eaff98658e8cc1f6ab..."
}
]
}
}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 SimilarWeb data for a given query (typically a domain).
{
"code": 200,
"msg": "OK",
"data": {
"apps": {
"googlePlay": [
{
"id": "com.google.android.apps.photos",
"name": "Google Photos",
"publisher": "Google LLC",
"appKey": "0_com.google.android.apps.photos",
"store": "google",
"ratings": 51693148
}
],
"appStore": [
{
"id": "507874739",
"name": "Google Drive",
"publisher": "Google LLC",
"appKey": "1_507874739",
"store": "apple",
"ratings": 6753918
}
]
},
"websites": [
{
"name": "google.com",
"image": "https://site-images.similarcdn.com/image?url=google.com&t=2&s=1&h=eb35e0fbafa3eb290132ffdfe47187d950d68daaa659ec1bd4b4e834b8f16461",
"isVirtual": false
}
],
"companies": [
{
"domain": "google.com",
"name": "Google, LLC",
"logoUrl": "https://static-us-east-1.similarcdn.com/si/company_data/merged_v2/firmographics_logos/bf9c398717b4c0c1ecee483a3c844e710eaff98658e8cc1f6ab..."
}
]
}
}curl "https://api.crawlora.net/api/v1/similarweb/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"