SimilarWeb API endpoint

Search SimilarWeb Info

Returns SimilarWeb data for a given query (typically a domain).

GETapiKey5 credits/requestsimilarweb.searchResponseDoc/similarweb/search

Parameters

NameInTypeRequiredEnumExampleDescription
qquerystringYesDomain or keyword to search
x-api-keyheaderstringYesAPI key required

Authentication

Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.

Billing

Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.

Credit cost
5 credits/request
Charged response
Successful 2xx responses
PlanPriceIncluded creditsDaily capRate limitOverage
Free$0/mo2,000500 daily credits5/minNo overage
Starter$9/mo20,0005,000 daily credits15/min$0.75/1,000 overage credits when enabled
Growth$29/mo100,00025,000 daily credits45/min$0.45/1,000 overage credits when enabled
Pro$79/mo400,000No daily cap120/min$0.30/1,000 overage credits
Business$199/mo1,200,000No daily cap300/min$0.20/1,000 overage credits
Enterprise$499/mo5,000,000No daily cap1,000/min$0.12/1,000 overage credits

Catalog quality warnings

  • missing example for required query param: q

Failure responses

StatusDescriptionSchema
400Invalid query parameter#/definitions/app.Response
429Rate limit exceeded#/definitions/app.Response
500Internal server error#/definitions/app.Response

Example response

{
  "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..."
      }
    ]
  }
}

Request schema

No body schema

Response schema

#/definitions/similarweb.searchResponseDoc

FieldTypeRequiredEnumBoundsExampleDescription
codeintegerNo200
datasimilarweb.SearchRespNo
data.appsobjectNo
data.apps.appStorearrayNo
data.apps.appStore[].appKeystringNo1_1484366079
data.apps.appStore[].idstringNo1484366079
data.apps.appStore[].imagestringNohttps://site-images.similarcdn.com/url?url=https%3A%2F%2Fis1-ssl.mzstatic.com%2Fimage%2Fthumb%2FPurple211%2Fv4%2F1c%2F1c%2Fe3%2F1c1ce399-1181-5be1-56d8-ee74e9f0cef4%2FAppIcon-0-0-1x_U007emarketing-0-0-0-7-0-0-85-220.png%2F175x175bb.png
data.apps.appStore[].namestringNoTwitterIt for Twitter X
data.apps.appStore[].publisherstringNoBEST SOCIAL APPS DEVELOPMENT LTD
data.apps.appStore[].ratingsintegerNo38197
data.apps.appStore[].storestringNoapple
data.apps.googlePlayarrayNo
data.apps.googlePlay[].appKeystringNo0_twittervideodownloader.twitter.videoindir.savegif.twdown
data.apps.googlePlay[].idstringNotwittervideodownloader.twitter.videoindir.savegif.twdown
data.apps.googlePlay[].imagestringNohttps://site-images.similarcdn.com/url?url=https%3A%2F%2Fplay-lh.googleusercontent.com%2FFi9-CFodjxpqvc3dC0XHDXHkFD3wkw9VccX_iL68U_3kmu2iIuHvIp5AZUoXGZ3mlQ%3Ds180
data.apps.googlePlay[].namestringNoX Saver:Download Twitter Video
data.apps.googlePlay[].publisherstringNoShotcut Video Workshop
data.apps.googlePlay[].ratingsintegerNo159344
data.apps.googlePlay[].storestringNogoogle
data.companiesarrayNo
data.companies[].domainstringNotwitter.com
data.companies[].logoUrlstringNohttps://sw-df-production-internal-data.s3.amazonaws.com/si/company_data/merged_v2/firmographics_logos/30e41d95dd013b4ec1b8d9e614ec546807cb2152b1f54fa3031d7e6488f93ce4.jpg
data.companies[].namestringNoTwitter
data.websitesarrayNo
data.websites[].imagestringNohttps://site-images.similarcdn.com/image?url=twitter.com&t=2&s=1&h=05438debe431144d9c727828570d1754a25bd9286bc14f3aa65a4f05b9057e25
data.websites[].isVirtualbooleanNofalse
data.websites[].namestringNotwitter.com
msgstringNoOK

Example request

curl -X GET "https://api.crawlora.net/api/v1/similarweb/search" -H "x-api-key: <api-key>"

TypeScript fetch

const url = new URL("https://api.crawlora.net/api/v1/similarweb/search");
const headers = new Headers();
headers.set("x-api-key", "<api-key>");
const response = await fetch(url, {
  method: "GET",
  headers,
});
const payload = await response.json();