API Reference
Contents
Overview
The Store Leads API is organized around REST. Our API has predictable, resource-oriented URLs, and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP verbs, which are understood by off-the-shelf HTTP clients. JSON is returned by all API responses, including errors.
The example requests within our documentation are shown using your personal API key. This is done for your convenience, so that you can cut and paste the examples. Be sure to keep your personal API key private.
Authentication
Authenticate your account by including your API key in requests. If your account has access to the API, then you can generate an API key under the "API" tab of the Account page.
Authentication is done by including your API key in an HTTP Authorization header.
Authorization: Bearer your.api.key
All API requests must be made over HTTPS. API requests without authentication will fail.
Errors
We use conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.). Codes in the 5xx range indicate an error with our servers (these are rare).
Rate Limits
Each API endpoint has a rate limit. If an account sends more than the allowed number of requests in a given time period, the API will respond with an HTTP 429 error code. The response will include a Retry-After header that contains the number of seconds to wait before trying again.
Resources
Apps
App objects represent an app that a store can install through the ecommerce platform's App Store. For instance, Merchant Mail is an app that can be installed through the Shopify App Store.
The attributes of the App object are documented below.
The time at which the App was installed by a Domain.
- Active
- Inactive (ie. removed from the App Store)
Retrieve an App
Retrieves the details of an App. The app is identified by combining the platform name with the app token (e.g., "shopify.marsello")
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello'
Example Response
{
"app": {
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/marsello",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Increase revenue from customers with a loyalty and marketing platform that works in-store and online",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/01610b7070e1a444e4229cbef477e025/icon/CIed7bvz4PsCEAE=.png",
"name": "Marsello: Loyalty, Email \u0026 SMS",
"token": "marsello",
"platform": "shopify",
"vendor_name": "Marsello",
"vendor_email": "help@marsello.com",
"vendor_website": "https://www.marsello.com/",
"id": "1.marsello",
"created_at": "2017-05-29T00:00:00",
"plans": [
{
"name": "Marsello Pro",
"monthly_cost": "$100/month",
"monthly_cost_cents": 10000
}
],
"categories": [
"email marketing",
"loyalty and rewards"
],
"integrates_with": [
"Vend",
"Google My Business",
"Lightspeed",
"Ecwid",
"Cin7",
"Heartland Retail"
],
"review_count": 350,
"installs": 5306,
"instp": 0.002623939865984225,
"installs_30d": 33,
"installs_90d": 872,
"reviews_90d": 4
}
}
List App Reviews
Returns a list of reviews for an App. By default, 50 Apps are returned in a single request. The page request option can be used to paginate.
Note that reviews are only available for Shopify apps.
Rate limit: 5 requests/second.
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=rating,domains.name
would return the rating field from each App review and the name field for all Domains.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Prefix fields with a minus sign (-) to denote descending sort order. Default: -updated_at
Valid fields are:
- updated_at
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app/shopify.marsello/reviews?page_size=2'
Example Response
{
"reviews": [
{
"updated_at": "2022-12-19T00:00:00Z",
"body": "Great Service and friendly program, \nI highly recommended and I hope I am able to learn all faster enough",
"merchant_name": "LUCYNINA",
"domains": [
{
"platform_domain": "lucynina.myshopify.com",
"name": "lucynina.com",
"platform_rank": 335940
}
],
"rating": 5
},
{
"updated_at": "2022-12-15T00:00:00Z",
"body": "Marsello's service is amazing in particular Rohelle Treymane, she is so efficient and helpful with outstanding follow up emails. Her service couldn't be better! Everyone is very helpful, product is great and they actually develop many of our suggestions! Keep it up!",
"merchant_name": "Tea Total",
"domains": [
{
"platform_domain": "tea-total-nz.myshopify.com",
"name": "teatotal.co.nz",
"platform_rank": 106419
}
],
"rating": 5
}
]
}
List Apps
Returns a list of Apps. By default, 50 Apps are returned in a single request. The page request option can be used to paginate.
Rate limit: 2 requests/second.
Request Options
Filters the results to Apps that belong to the provided categories. Multiple categories must be comma-separated.
The boolean operation to apply to values provided in the f:categories request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with install counts greater than or equal to the provided integer value.
Filters the results to Apps with install counts than or equal to the provided integer value.
Filters the results to Apps on the given ecommerce platform. Multiple values must be comma-separated.
Valid values are:
- woocommerce
- shopify
- custom
- wix
- squarespace
- cafe24
- prestashop
- square
- opencart
- bigcartel
- ecwid
- magento
- godaddy
- tiendanube
- bandcamp
- basekit
- base
- takeaway
- youcan
- weeblycommerce
- bigcommerce
- lojaintegrada
- mercado
- prom
- shopware
- spring
- jouwweb
- shopline
- thinkific
- kajabi
- odoo
- shoptet
- tray
- storesjp
- teachable
- salla
- colormeshop
- menufy
- yampi
- shoper
- alibabaminisite
- imweb
- lightspeed
- etsypattern
- epages
- sapo
- shoplazza
- makane
- lnwshop
- teechip
- haravan
- drupal
- ueeshop
- oemsaas
- cartx
- nhngodo
- ideasoft
- 3dcart
- ticimax
- gambio
- webflow
- nop
- easystore
- artstorefronts
- makewebeasy
- mijnwebwinkel
- volusion
- sixshop
- unas
- vtex
- empretienda
- atg
- farmacieinitalia
- beatstars
- sage
- shoprenter
- demandware
- shopbase
- shopyy
- gumroad
- ccvshop
- satukz
- unicart
- yahoo
- zid
- hcl
- makeshop
- sap
- idosell
- dooca
- aspdotnetstorefront
- jtl
- netsuite
- quickbutik
- abicart
- oxid
- xshoppy
- rain
- dukaan
- cyberbiz
- neto
- shopmatic
- plenty
- commentsold
- cartzy
- sirclo
- spreadshop
- wizishop
- futureshop
- americommerce
- lazyshop
- ikas
- shopage
- qdm
- spreecommerce
- winedirect
- dotpe
- 91app
- boutir
- networksolutions
- wbuy
- smartetailing
- cityhive
- merchantpro
- miva
- irroba
- urastore
- meepshop
- funpinpin
- commerce7
- instamojo
- wikinggruppen
- visualsoft
- musicglue
- zohocommerce
- launchcart
- magazord
- waca
- expandcart
- storehippo
- allvalue
- oddle
- coachannel
- zammit
- intershop
- thehutgroup
- starweb
- cococart
- fbits
- wuilt
- dropify
- grazecart
- e37
- bookmanager
- askas
- coachy
- jetshop
- ochre
- microweber
- tokotalk
- storeino
- easymyshop
- norce
- commercehq
- ecomz
- getshoptoday
- fastcommerce
- vendre
- jet
- meshop
- bentoweb
- sellerscommerce
- shopcada
- goimagine
- zvendo
- stackcommerce
- oracle
- linx
- fenicio
- storeberry
- 82cart
- moovin
- vnda
- tossdown
- sprwt
- ninjaos
- sitecore
- deliverybizpro
- elevar
- matajer
- viskan
- shoptille
- convertize
- commerceup
- shopexpress
- workarea
- wshop
- inovarti
- tapgoods
- f1
- cleverbridge
- dutchieplus
- digitalriver
- tiu
- wx3
- bleez
- 2cshop
- stoom
- zyda
- ultracommerce
- codshopy
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Apps matching all provided values.
- or: Returns Apps matching any provided value.
- not: Returns Apps that do not match any of the provided values.
Filters the results to Apps with review counts greater than or equal to the provided integer value.
Filters the results to Apps with review counts than or equal to the provided integer value.
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- average_rating
- created_at
- installs
- removed_at
- reviews
Filters Apps based on a text query. (e.g., a query for "dropship" will return only Apps that matching the word "dropship" in the App name or description fields).
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/app?page_size=2&f:p=shopify&f:categories=marketing'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:p":"shopify","f:categories":"marketing"}' 'https://storeleads.app/json/api/v1/all/app'
Example Response
{
"apps": [
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/sendmunk",
"state": "Active",
"description": "Email \u0026 SMS Automations, Klaviyo, Privy, Mailchimp Alternative",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b3db1326bd13a3df8584c51d644559c1/icon/CJ_9m9v0lu8CEAE=.png?height=60\u0026width=60",
"name": "Email, Pop Up, Bar, Forms, SMS",
"token": "sendmunk",
"platform": "shopify",
"vendor_name": "Sendmunk",
"vendor_url": "https://apps.shopify.com/partners/sendmunk",
"vendor_email": "support@sendmunk.com",
"vendor_website": "https://sendmunk.com/",
"id": "1.sendmunk",
"created_at": "2021-01-05T00:00:00",
"plans": [
{
"name": "Free to install",
"monthly_cost": "Free to install"
}
],
"categories": [
"marketing",
"conversion",
"store management"
],
"review_count": 61
},
{
"average_rating": "5.0",
"app_store_url": "https://apps.shopify.com/facebook-live-chat-socialreply",
"state": "Active",
"description": "Sell your products via Facebook,Instagram: Live Chat, Comment",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/eef7760ec0ea7a4a45156a7cb6dfd143/icon/CIWwv_6G_fkCEAE=.jpeg?height=60\u0026quality=90\u0026width=60",
"name": "Socialreply: Live Chat,Chatbot",
"token": "facebook-live-chat-socialreply",
"platform": "shopify",
"vendor_name": "Socialhead",
"vendor_url": "https://apps.shopify.com/partners/socialhead",
"vendor_email": "support@socialhead.io",
"vendor_website": "https://socialhead.io/",
"id": "1.facebook-live-chat-socialreply",
"created_at": "2020-07-23T00:00:00",
"categories": [
"marketing",
"customer service",
"fulfillment"
],
"integrates_with": [
"Facebook",
"Instagram",
"Facebook messenger",
"Instagram direct"
],
"review_count": 19
}
]
}
Domains
Domain objects represent an online store identified by a DNS domain name. The API allows you to retrieve information for a domain based on its name, by searching for domains that match certain criteria or by exporting all domains.
The attributes of the Domain object are documented below.
The average price of products sold on the Domain. Values in the minor unit of the Domain's currency (e.g., cents of USD).
The average price of products sold on the Domain. Formatted in the store's currency. (e.g., $9.75)
A list of contact information available for the Domain. This includes email addresses, phone numbers and social media accounts. The following attributes are included:
- followers: number of followers (present only for twitter, instagram, facebook, facebook group, pinterest, tiktok and youtube handles)
- followers_30d: change in number of followers over last 30 days
- followers_90d: change in number of followers over last 90 days
- source: relative url of the page that the contact information was found
- type: the type of contact information (email, phone, twitter, facebook, facebookgroup, instagram, pinterest, tiktok, yelp, youtube, snapchat, linkedin)
- value: the contact information (email address, phone number or url to social network handle)
Note that some values may be redacted to comply with local privacy laws. See our Privacy Policy for more details.
The number of employees.
The estimated total monthly sales for the merchant. Values in cents of USD.
The date at which the Domain last changed ecommerce platforms (if any). Note: Data not available for Domains that changed ecommerce platforms prior to October 2019.
The name of the pricing plan that the Domain was previously on (if any). Note: Data not available for Domains that changed plans prior to July 2019.
The date at which the Domain last changed pricing plans (if any). Note: Data not available for Domains that changed plans prior to July 2019.
The number of products sold by the Domain.
Product counts are precise for standard Shopify stores. For all other stores, product counts are an estimate.
- Active
- Inactive
- Password Protected
- Redirect
- Dropshipper
- Print on Demand
- Trending on Facebook
- Trending on Instagram
- Trending on Pinterest
- Trending on TikTok
- Trending on Twitter
- Trending on YouTube
- Dropping on Facebook
- Dropping on Instagram
- Dropping on Pinterest
- Dropping on TikTok
- Dropping on Twitter
- Dropping on YouTube
- name
- description
- name
- style
- cost (in cents of USD)
- vendor
- version (for some themes only)
The number of distinct vendors of products sold by the Domain.
Vendor counts are only available for Shopify stores.
Retrieve a Domain
Retrieves the details of a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/goodasgoldshop.com'
Example Response
{
"domain": {
"theme": {
"name": "Unknown",
"style": "Unknown",
"vendor": "Unknown",
"version": "Unknown"
},
"cluster_best_ranked": "goodasgoldshop.com",
"city": "Wellington",
"last_updated_at": "2023-01-26T00:00:00",
"subregion": "Australia and New Zealand",
"contact_page": "https://goodasgoldshop.com/contact",
"country_code": "NZ",
"title": "Good as Gold - Streetwear, Fashion, Shoes \u0026 Accessories",
"administrative_area_level_1": "Wellington",
"state": "Active",
"icon": "https://goodasgoldshop.com/assets/favicons/apple-touch-icon.png",
"brands_page": "https://goodasgoldshop.com/brands",
"region": "Oceania",
"language_code": "en",
"tracking_page": "https://goodasgoldshop.com/shipping",
"last_platform_change_at": "2022-10-20T00:00:00",
"platform_domain": "goodasgoldshop.com",
"platform": "custom",
"location": "Wellington, New Zealand",
"og_image": "https://goodasgoldshop.com/images/_400x400_crop_center-center_82/GAG_BOND_STREET.jpg",
"merchant_name": "Good as Gold",
"last_platform": "shopify",
"keywords": "streetwear,wellington,fashion,tshirt,nike,wallets,sneakers,footwear,watches,accessories,jewellery,outerwear,jackets,nz,new zealand,adidas,shoes,yu mei,veja,mens,womens,champion,dresses,handbags",
"created_at": "2018-06-15T00:00:00",
"name": "goodasgoldshop.com",
"description": "Description of the page less than 150 characters",
"contact_info": [
{
"category": "Women's Clothing Store",
"followers": 22000,
"likes": 118,
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/shopGoodAsGold"
},
{
"category": "Personal Goods \u0026 General Merchandise Stores",
"description": "Retail company",
"followers": 28499,
"posts": 7523,
"source": "/",
"type": "instagram",
"value": "https://instagram.com/goodasgoldshop"
},
{
"description": "Good As Gold | Good as Gold is a family owned independent multi-brand fashion and streetwear store, bringing together the best brands from around the globe to present a unique curated selection of goodness. We hunt far and wide to bring you products of the highest quality, while providing the best service humanely possible.\n\nSince opening the doors in 2004, we have worked hard to create a hub for the creative community that surrounds us.\n\nGood Shit ~ Be Yourself",
"followers": 1991,
"followers_30d": -1,
"followers_90d": 1,
"posts": 184,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.nz/goodasgoldshop"
},
{
"source": "/",
"type": "phone",
"value": "+64 4 381 4653"
},
{
"source": "/customer-care",
"type": "phone",
"value": "+64 4 913-6061"
}
],
"aliases": [
"www.goodasgoldshop.com"
],
"categories": [
"/Apparel/Footwear"
],
"technologies": [
{
"installed_at": "2022-01-13T05:52:09Z",
"name": "Afterpay",
"description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
"icon_url": "https://storeleads.app/img/tech/afterpay.png",
"installs": 148548
},
{
"installed_at": "2023-01-19T06:36:07Z",
"name": "Campaign Monitor",
"description": "Connecting with your audience has never been easier with Campaign Monitor’s straightforward email marketing and automation tools.",
"icon_url": "https://storeleads.app/img/tech/campaignmonitor.png",
"installs": 3474
},
{
"installed_at": "2021-06-08T15:41:32Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 2822666
},
{
"installed_at": "2021-06-02T15:50:10Z",
"name": "Craft CMS",
"description": "Craft is a flexible, user-friendly CMS for creating custom digital experiences on the web and beyond.",
"icon_url": "https://storeleads.app/img/tech/craftcms.png",
"installs": 1114
},
{
"installed_at": "2022-09-06T10:15:05Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2488144
},
{
"installed_at": "2021-06-02T15:50:10Z",
"name": "Google Analytics",
"description": "Google Analytics gives you the tools you need to better understand your customers. You can then use those business insights to take action, such as improving your website, creating tailored audience lists, and more.",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"installs": 3419767
},
{
"installed_at": "2023-01-12T16:42:49Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"installs": 309745
},
{
"installed_at": "2021-12-09T23:22:36Z",
"name": "Trustpilot",
"description": "Behind every review is an experience that matters.",
"icon_url": "https://storeleads.app/img/tech/trustpilot.png",
"installs": 96489
}
],
"cluster_domains": [
"goodasgoldshop.com",
"shop.goodasgoldshop.com"
],
"features": [
"Brands Page",
"International Shipping",
"Contact Page",
"Tracking or Returns",
"Tracking Page",
"Has Blog"
],
"shipping_carriers": [
"New Zealean Post"
],
"rank_percentile": 5.2396,
"rank": 613672,
"latitude": -41.2864603,
"platform_rank_percentile": 7.0685,
"longitude": 174.776236,
"estimated_sales": 22523534,
"employee_count": 15,
"alexa_rank": 761527,
"cc_rank": 1267559,
"cc_centrality": 8795811,
"product_count": 2798,
"platform_rank": 100982
}
}
List App Reviews for Domain
Retrieves a list of App reviews associated with a Domain. You must provide the name of the Domain to lookup. The name can either be the public DNS domain name (e.g., merchant.com) or the platform domain (e.g., merchant.myshopify.com).
Note that reviews are only available for Shopify apps.
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/goodasgoldshop.com/app_reviews'
Example Response
{
"reviews": [
{
"app": {
"app_store_url": "https://apps.shopify.com/marsello",
"name": "Marsello: Loyalty, Email \u0026 SMS",
"vendor_name": "Marsello",
"id": "1.marsello"
},
"updated_at": "2022-12-19T00:00:00Z",
"body": "Great Service and friendly program, \nI highly recommended and I hope I am able to learn all faster enough",
"merchant_name": "LUCYNINA",
"domains": [
{
"platform_domain": "lucynina.myshopify.com",
"name": "lucynina.com",
"platform_rank": 335940
}
],
"rating": 5
}
]
}
List Domains
Returns a list of Domains. The request options documented below can be used to constrain the results to Domains matching a specific criteria. Without any options, this endpoint will list all Domains.
By default, 50 Domains are returned in a single request. The cursor request option can be used to paginate through results.
Rate limit: 2 requests/second (cursor=all is limited to 1 request/minute)
Request Options
Filters the results to Domains matching the Advanced Search.
The cursor request option is used to paginate through search results. Each response that has more results returns a next_cursor attribute. Pass this value to the cursor request option to retrieve the next page of results. When you reach the end of the results, the response will not include a cursor.
Note that the cursor value is only valid until the next weekly data update. An error will be returned if you obtain a cursor prior to a weekly data update and then attempt to use it after the weekly update.
Use cursor=all to retrieve all Domains matching the provided filters in a single request. This can also be done using the Export Domains endpoint (which is slightly faster) however you may prefer to use this endpoint so that all results are returned in a single JSON document.
When using cursor=all, results are generated asynchronously and the initial request will immediately return an HTTP 202 response. The client should poll the same url, approximately once every 5 seconds, until an HTTP 200 response is returned (along with results).
When an HTTP 202 response is returned, the response body may include keys indicating the progress of the export.
{ "progress": 10000, "total": 750000 }
When using cursor=all, responses are returned in the same format as all other requests to the "List Domains" endpoint. However, these responses can be quite large (often including data for million of domains). Since the default response format puts all data into a single JSON document, this can be challenging to parse. Unless you are using a streaming JSON parser, then all data in the response must fit into memory which may be challenging for development environments or smaller cloud instances. Add for=jsonl to the request options to change the output format to JSONL (which returns one JSON document per line) which is easier to parse.
Filters the results to Domains that have the given app installed. Apps are identified by combining the App platform and the App name (e.g., "shopify.messenger").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:an request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given administrative_area_level_1. Must be used with the f:cc filter.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:administrative_area_level_1:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:administrative_area_level_1 request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have alexa_rank greater than or equal to the provided value.
Filters the results to Domains that have alexa_rank less than or equal to the provided value.
Filters the results to Domains that installed the given App identifier within time ranges specified by f:app_installed_at:min and f:app_installed_at:max (at least one of min and max must be provided).
The minimum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App before the provided maximum date (in f:app_installed_at:max).
The maximum date for f:app_installed_at. If left blank, the response includes all Domains that installed the App after the provided minimum date (in f:app_installed_at:min).
Filters the results to Domains that uninstalled the given App identifier within time ranges specified by f:app_uninstalled_at:min and f:app_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App before the provided maximum date (in f:app_uninstalled_at:max).
The maximum date for f:app_uninstalled_at. If left blank, the response includes all Domains that uninstalled the App after the provided minimum date (in f:app_uninstalled_at:min).
Filters the results to Domains that have average product price greater than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have average product price less than or equal to the provided integer value.
Note: this value is the minor unit of the Domain's currency (e.g., cents of USD). So use the value 150 to represent $1.50.
Filters the results to Domains that have the given category.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:cat request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given country code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cc:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cc request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with a location in the given city. Must be used with the f:cc and f:administrative_area_level_1 filters.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:city:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:city request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created on or after the given time.
Filters the results to Domains that were created on or before the given time.
Filters the results to Domains that were created in the given month (identified using YYYY-MM format).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymm:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymm request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that were created in the given week (identified using YYYY-MM-DD format). Note that our data is updated weekly and the weekly creation date is always grouped to a Friday. If you query with a value that is not a Friday, we will automatically map the value provided to the previous Friday. (e.g., 2019-04-22 is be mapped to 2019-04-19).
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:cratyyyymmdd:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:cratyyyymmdd request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains selling with the given currency code.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:curr:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:curr request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given state.
Valid values are:
- Active
- Inactive
- Password Protected
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ds:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ds request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have employee count greater than or equal to the provided integer value.
Filters the results to Domains that have employee count less than or equal to the provided integer value.
Filters the results to Domains that have estimated monthly sales greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have estimated monthly sales less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have a minimum number of Facebook followers.
Filters the results to Domains that have a maximum number of Facebook followers.
Filters the results to Domains that have added at least the given number of Facebook followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Facebook followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Facebook followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Facebook followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have the given features enabled.
Valid values are:
- Brand Advocate Page
- Brands Page
- Contact Page
- Financing Page
- Free Returns
- Gift Messasging
- Has Android App
- Has iOS App
- International Shipping
- Public Company
- Returns Page
- Shopify POS
- Signature Required
- Store Locator Page
- Storefront API
- Tracking Page
- Tracking or Returns
- UPS Access Point
- Warranty Page
- Wholesale/Retailers Page
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:features request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Instagram followers.
Filters the results to Domains that have a maximum number of Instagram followers.
Filters the results to Domains that have added at least the given number of Instagram followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Instagram followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Instagram followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Instagram followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters results based on Domain type. This is a boolean field. Use true to return only Domains using a platform domain name (e.g., merchant.myshopify.com). Use false to return only Domains using a custom domain (e.g., shop.merchant.com).
The boolean operation to apply to values provided in the f:ismy request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters results to Domains that have contact information of the given type(s).
Valid values are:
- facebookgroup
- phone
- snapchat
- youtube
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:it request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with content in the given language code. (e.g., "en")
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:lang:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:lang request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platform pricing plans on or after the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed ecommerce platform pricing plans on or before the provided date. Often used with the f:plan request option.
Filters the results to Domains that changed from the provided ecommerce platform.
Valid values are:
- woocommerce
- shopify
- custom
- wix
- squarespace
- cafe24
- prestashop
- square
- opencart
- bigcartel
- ecwid
- magento
- godaddy
- tiendanube
- bandcamp
- basekit
- base
- takeaway
- youcan
- weeblycommerce
- bigcommerce
- lojaintegrada
- mercado
- prom
- shopware
- spring
- jouwweb
- shopline
- thinkific
- kajabi
- odoo
- shoptet
- tray
- storesjp
- teachable
- salla
- colormeshop
- menufy
- yampi
- shoper
- alibabaminisite
- imweb
- lightspeed
- etsypattern
- epages
- sapo
- shoplazza
- makane
- lnwshop
- teechip
- haravan
- drupal
- ueeshop
- oemsaas
- cartx
- nhngodo
- ideasoft
- 3dcart
- ticimax
- gambio
- webflow
- nop
- easystore
- artstorefronts
- makewebeasy
- mijnwebwinkel
- volusion
- sixshop
- unas
- vtex
- empretienda
- atg
- farmacieinitalia
- beatstars
- sage
- shoprenter
- demandware
- shopbase
- shopyy
- gumroad
- ccvshop
- satukz
- unicart
- yahoo
- zid
- hcl
- makeshop
- sap
- idosell
- dooca
- aspdotnetstorefront
- jtl
- netsuite
- quickbutik
- abicart
- oxid
- xshoppy
- rain
- dukaan
- cyberbiz
- neto
- shopmatic
- plenty
- commentsold
- cartzy
- sirclo
- spreadshop
- wizishop
- futureshop
- americommerce
- lazyshop
- ikas
- shopage
- qdm
- spreecommerce
- winedirect
- dotpe
- 91app
- boutir
- networksolutions
- wbuy
- smartetailing
- cityhive
- merchantpro
- miva
- irroba
- urastore
- meepshop
- funpinpin
- commerce7
- instamojo
- wikinggruppen
- visualsoft
- musicglue
- zohocommerce
- launchcart
- magazord
- waca
- expandcart
- storehippo
- allvalue
- oddle
- coachannel
- zammit
- intershop
- thehutgroup
- starweb
- cococart
- fbits
- wuilt
- dropify
- grazecart
- e37
- bookmanager
- askas
- coachy
- jetshop
- ochre
- microweber
- tokotalk
- storeino
- easymyshop
- norce
- commercehq
- ecomz
- getshoptoday
- fastcommerce
- vendre
- jet
- meshop
- bentoweb
- sellerscommerce
- shopcada
- goimagine
- zvendo
- stackcommerce
- oracle
- linx
- fenicio
- storeberry
- 82cart
- moovin
- vnda
- tossdown
- sprwt
- ninjaos
- sitecore
- deliverybizpro
- elevar
- matajer
- viskan
- shoptille
- convertize
- commerceup
- shopexpress
- workarea
- wshop
- inovarti
- tapgoods
- f1
- cleverbridge
- dutchieplus
- digitalriver
- tiu
- wx3
- bleez
- 2cshop
- stoom
- zyda
- ultracommerce
- codshopy
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:last_platform request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that changed ecommerce platforms on or after the provided date.
Filters the results to Domains that changed ecommerce platforms on or before the provided date.
Filters results to Domains that are on the associated Lists.
Lists are identified by the ID of the List which can be found using one of the List endpoints.
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:lids request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have monthly app spend greater than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains that have monthly app spend less than or equal to the provided integer value.
Note: this value is in cents of USD. So use the value 150 to represent $1.50.
Filters the results to Domains whose most recently published product is equal to or after the provided date.
Filters the results to Domains whose most recently published product is equal to or before the provided date.
Filters the results to Domains that have given Magento major version.
Valid values are:
- 1
- 2
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mmv:op to "or" if you provide multiple values.
Consider using the f:mv request option if you need to filter on the full Magento version.
The boolean operation to apply to values provided in the f:mmv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have given Magento version.
Examples of valid values are:
- 1.7.0.2
- 2.3
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:mv:op to "or" if you provide multiple values.
Consider using the f:mmv request option if you only need to filter on the Magento major version.
The boolean operation to apply to values provided in the f:mv request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Pinterest followers.
Filters the results to Domains that have a maximum number of Pinterest followers.
Filters the results to Domains that have added at least the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Pinterest followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains using the given pricing plan.
Examples of valid values are:
- Shopify Plus
- Professional
- Performance
- Premium
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:plan:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:plan request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are on the given ecommerce platform.
Valid values are:
- woocommerce
- shopify
- custom
- wix
- squarespace
- cafe24
- prestashop
- square
- opencart
- bigcartel
- ecwid
- magento
- godaddy
- tiendanube
- bandcamp
- basekit
- base
- takeaway
- youcan
- weeblycommerce
- bigcommerce
- lojaintegrada
- mercado
- prom
- shopware
- spring
- jouwweb
- shopline
- thinkific
- kajabi
- odoo
- shoptet
- tray
- storesjp
- teachable
- salla
- colormeshop
- menufy
- yampi
- shoper
- alibabaminisite
- imweb
- lightspeed
- etsypattern
- epages
- sapo
- shoplazza
- makane
- lnwshop
- teechip
- haravan
- drupal
- ueeshop
- oemsaas
- cartx
- nhngodo
- ideasoft
- 3dcart
- ticimax
- gambio
- webflow
- nop
- easystore
- artstorefronts
- makewebeasy
- mijnwebwinkel
- volusion
- sixshop
- unas
- vtex
- empretienda
- atg
- farmacieinitalia
- beatstars
- sage
- shoprenter
- demandware
- shopbase
- shopyy
- gumroad
- ccvshop
- satukz
- unicart
- yahoo
- zid
- hcl
- makeshop
- sap
- idosell
- dooca
- aspdotnetstorefront
- jtl
- netsuite
- quickbutik
- abicart
- oxid
- xshoppy
- rain
- dukaan
- cyberbiz
- neto
- shopmatic
- plenty
- commentsold
- cartzy
- sirclo
- spreadshop
- wizishop
- futureshop
- americommerce
- lazyshop
- ikas
- shopage
- qdm
- spreecommerce
- winedirect
- dotpe
- 91app
- boutir
- networksolutions
- wbuy
- smartetailing
- cityhive
- merchantpro
- miva
- irroba
- urastore
- meepshop
- funpinpin
- commerce7
- instamojo
- wikinggruppen
- visualsoft
- musicglue
- zohocommerce
- launchcart
- magazord
- waca
- expandcart
- storehippo
- allvalue
- oddle
- coachannel
- zammit
- intershop
- thehutgroup
- starweb
- cococart
- fbits
- wuilt
- dropify
- grazecart
- e37
- bookmanager
- askas
- coachy
- jetshop
- ochre
- microweber
- tokotalk
- storeino
- easymyshop
- norce
- commercehq
- ecomz
- getshoptoday
- fastcommerce
- vendre
- jet
- meshop
- bentoweb
- sellerscommerce
- shopcada
- goimagine
- zvendo
- stackcommerce
- oracle
- linx
- fenicio
- storeberry
- 82cart
- moovin
- vnda
- tossdown
- sprwt
- ninjaos
- sitecore
- deliverybizpro
- elevar
- matajer
- viskan
- shoptille
- convertize
- commerceup
- shopexpress
- workarea
- wshop
- inovarti
- tapgoods
- f1
- cleverbridge
- dutchieplus
- digitalriver
- tiu
- wx3
- bleez
- 2cshop
- stoom
- zyda
- ultracommerce
- codshopy
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:p:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:p request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have product count greater than or equal to the provided integer value.
Filters the results to Domains that have product count less than or equal to the provided integer value.
Filters the results to Domains that have platform rank greater than or equal to the provided integer value.
Filters the results to Domains that have platform rank less than or equal to the provided integer value.
Filters the results to Domains that have platform rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have platform rank percentile less than or equal to the provided float value.
Filters the results to Domains that have rank greater than or equal to the provided integer value.
Filters the results to Domains that have rank less than or equal to the provided integer value.
Filters the results to Domains that have rank percentile greater than or equal to the provided float value.
Filters the results to Domains that have rank percentile less than or equal to the provided float value.
Filters the results to Domains that are in the given region (e.g., "Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:reg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:reg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that are in the given subregion (e.g., "Northern Europe").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:sreg:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:sreg request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that ships to the given country code (e.g., "CA").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:stcs:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:stcs request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given tags (e.g., "Print on Demand").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tags request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have the given technology installed (e.g., "Facebook Pixel").
Multiple values must be comma-separated.
The boolean operation to apply to values provided in the f:tech request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that installed the given technology within time ranges specified by f:tech_installed_at:min and f:tech_installed_at:max (at least one of min and max must be provided).
The minimum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology before the provided maximum date (in f:tech_installed_at:max).
The maximum date for f:tech_installed_at. If left blank, the response includes all Domains that installed the technology after the provided minimum date (in f:tech_installed_at:min).
Filters the results to Domains that uninstalled the given technology within time ranges specified by f:tech_uninstalled_at:min and f:tech_uninstalled_at:max (at least one of min and max must be provided).
The minimum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology before the provided maximum date (in f:tech_uninstalled_at:max).
The maximum date for f:tech_uninstalled_at. If left blank, the response includes all Domains that uninstalled the technology after the provided minimum date (in f:tech_uninstalled_at:min).
Filters the results to Domains that are in the given top-level domain (e.g., "net").
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tld:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tld request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme name.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tn:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tn request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme style.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:ts:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:ts request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains with the given Theme vendor name.
Multiple values must be comma-separated. This field is mutually exclusive, so be sure to set f:tvn:op to "or" if you provide multiple values.
The boolean operation to apply to values provided in the f:tvn request option (if multiple values are provided).
Possible values:
- and (default): Returns Domains matching all provided values.
- or: Returns Domains matching any provided value.
- not: Returns Domains that do not match any of the provided values.
For more complex queries, see Advanced Search.
Filters the results to Domains that have a minimum number of Twitter followers.
Filters the results to Domains that have a maximum number of Twitter followers.
Filters the results to Domains that have added at least the given number of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of Twitter followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have a minimum number of YouTube followers.
Filters the results to Domains that have a maximum number of YouTube followers.
Filters the results to Domains that have added at least the given number of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given number of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at least the given percentage of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
Filters the results to Domains that have added at most the given percentage of YouTube followers in the last 30 days. Note that values can be negative to find Domains that with shrinking follower counts.
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,apps.name
would return the name field from each Domain and the name field for all apps
on each Domain.
The number of Domains to return in a single query. Default: 50, Max: 5000.
Changes the sort order. Multiple fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Examples of valid fields are provided below. Note that each example uses "rank" as a secondary sort option. This is required to ensure consistent sort order when the value of the primary sort option is not unique (e.g., many stores have the same number of Facebook followers, so you need to specify a secondary sort option as a tie-breaker).
arank,rank | Alexa Rank (Asc) |
-arank,rank | Alexa Rank (Desc) |
aic,rank | Apps Installed (Asc) |
-aic,rank | Apps Installed (Desc) |
avgpp,rank | Average Product Price (Asc) |
-avgpp,rank | Average Product Price (Desc) |
cfc,rank | Combined Followers (Asc) |
-cfc,rank | Combined Followers (Desc) |
cratyyyymmddnco,rank | Created (Asc) |
-cratyyyymmddnco,rank | Created (Desc) |
empc,rank | Employee Count (Asc) |
-empc,rank | Employee Count (Desc) |
er,rank | Estimated Sales (Asc) |
-er,rank | Estimated Sales (Desc) |
fc_2,rank | Facebook Followers (Asc) |
-fc_2,rank | Facebook Followers (Desc) |
fc30d_2,rank | Facebook Followers Last 30 Days (Asc) |
-fc30d_2,rank | Facebook Followers Last 30 Days (Desc) |
fc30dp_2,rank | Facebook Followers Last 30 Days Percent (Asc) |
-fc30dp_2,rank | Facebook Followers Last 30 Days Percent (Desc) |
fc_3,rank | Instagram Followers (Asc) |
-fc_3,rank | Instagram Followers (Desc) |
fc30d_3,rank | Instagram Followers Last 30 Days (Asc) |
-fc30d_3,rank | Instagram Followers Last 30 Days (Desc) |
fc30dp_3,rank | Instagram Followers Last 30 Days Percent (Asc) |
-fc30dp_3,rank | Instagram Followers Last 30 Days Percent (Desc) |
lplancat,rank | Last Plan Changed At (Asc) |
-lplancat,rank | Last Plan Changed At (Desc) |
maxpp,rank | Maximum Product Price (Asc) |
-maxpp,rank | Maximum Product Price (Desc) |
mas,rank | Monthly App Spend (Asc) |
-mas,rank | Monthly App Spend (Desc) |
fc_6,rank | Pinterest Followers (Asc) |
-fc_6,rank | Pinterest Followers (Desc) |
fc30d_6,rank | Pinterest Followers Last 30 Days (Asc) |
-fc30d_6,rank | Pinterest Followers Last 30 Days (Desc) |
fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Asc) |
-fc30dp_6,rank | Pinterest Followers Last 30 Days Percent (Desc) |
prank,rank | Platform Rank (Asc) |
-prank,rank | Platform Rank (Desc) |
pc,rank | Product Count (Asc) |
-pc,rank | Product Count (Desc) |
pic,rank | Product Image Count (Asc) |
-pic,rank | Product Image Count (Desc) |
rank | Rank (Asc) |
-rank | Rank (Desc) |
tc,rank | Theme Cost (Asc) |
-tc,rank | Theme Cost (Desc) |
fc_10,rank | TikTok Followers (Asc) |
-fc_10,rank | TikTok Followers (Desc) |
fc30d_10,rank | TikTok Followers Last 30 Days (Asc) |
-fc30d_10,rank | TikTok Followers Last 30 Days (Desc) |
fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Asc) |
-fc30dp_10,rank | TikTok Followers Last 30 Days Percent (Desc) |
fc_1,rank | Twitter Followers (Asc) |
-fc_1,rank | Twitter Followers (Desc) |
fc30d_1,rank | Twitter Followers Last 30 Days (Asc) |
-fc30d_1,rank | Twitter Followers Last 30 Days (Desc) |
fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Asc) |
-fc30dp_1,rank | Twitter Followers Last 30 Days Percent (Desc) |
fc_8,rank | YouTube Followers (Asc) |
-fc_8,rank | YouTube Followers (Desc) |
fc30d_8,rank | YouTube Followers Last 30 Days (Asc) |
-fc30d_8,rank | YouTube Followers Last 30 Days (Desc) |
fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Asc) |
-fc30dp_8,rank | YouTube Followers Last 30 Days Percent (Desc) |
Filters Domains based on a text query. e.g., a query for "vape" will return only Domains that matching the word "vape" in one of the following fields:
- Domain name (prefix match only)
- Domain top-level domain plus one (prefix match only)
- Domain aliases (prefix match only)
- Merchant name
- Home page title tag
- Home page meta description tag
- Home page meta keywords tag
- Technologies
- App names
- Location
- Social media account names
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain?f:cc=US&f:cratyyyymm=2018-11&page_size=2'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"f:cc":"US","f:cratyyyymm":"2018-11"}' 'https://storeleads.app/json/api/v1/all/domain'
Example Response
{
"domains": [
{
"theme": {
"name": "icon",
"vendor": "We are Underground",
"version": "Unknown",
"cost": 26000
},
"alternates": {
"en-FR": "smglobalshop.com",
"en-KR": "smglobalshop.com",
"en-TH": "smglobalshop.com",
"en-US": "smglobalshop.com",
"x-default": "smglobalshop.com"
},
"plan": "Shopify Plus",
"cluster_best_ranked": "smglobalshop.com",
"city": "Los Angeles",
"last_updated_at": "2023-01-26T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"currency_code": "USD",
"title": "SM Global Shop",
"administrative_area_level_1": "California",
"state": "Active",
"icon": "https://cdn.shopify.com/s/files/1/0069/4203/1983/files/favicon_32x32.png?v=1613169922",
"region": "Americas",
"language_code": "en",
"platform_domain": "sgs-x-sm.myshopify.com",
"last_plan_change_at": "2019-09-28T00:00:00",
"platform": "shopify",
"location": "Los Angeles, CA, USA",
"og_image": "https://cdn.shopify.com/s/files/1/0069/4203/1983/files/SGS_LOGO_PNG_adebf6d5-2afc-4740-b6bc-12f79cc9d2b4.png?height=628\u0026pad_color=ffffff\u0026v=1613170137\u0026width=1200",
"max_product_published_at": "2023-01-09T00:00:00",
"merchant_name": "SM Global Shop",
"avg_price_formatted": "$27.28",
"created_at": "2018-11-02T00:00:00",
"name": "smglobalshop.com",
"description": "SM Global Shop is the official SM entertainment merchandise shop where we sell exclusive SM goods, accessories, and albums.",
"contact_info": [
{
"description": "Official SM Entertainment Merchandise Shop ft. #SuperM #SHINee #RedVelvet #NCT #EXO #SuperJunior #TVXQ #GirlsGeneration #fx #aespa",
"followers": 56075,
"followers_90d": 921,
"posts": 1899,
"source": "/",
"type": "twitter",
"value": "https://www.twitter.com/smglobalshop"
},
{
"category": "Clothing (Brand)",
"followers": 1357423,
"followers_30d": 4699,
"followers_90d": 7179,
"likes": 1346377,
"source": "/",
"type": "facebook",
"value": "https://www.facebook.com/smglobalshop"
},
{
"category": "Personal Goods \u0026 General Merchandise Stores",
"description": "Official SM Merchandise Store\n*All album sales officially count towards Billboard (US orders only) and Gaon \u0026 Hanteo Chart (Domestic + International).",
"followers": 302965,
"followers_90d": -1811,
"posts": 1491,
"source": "/",
"type": "instagram",
"value": "https://instagram.com/smglobalshop"
},
{
"source": "/",
"type": "email",
"value": "info@smglobalshop.com"
},
{
"source": "/",
"type": "snapchat",
"value": "https://snapchat.com/add/smglobalshop"
},
{
"description": "SM Global Shop | Official merchandise certified by SM Entertainment",
"followers": 16978,
"followers_30d": 1210,
"followers_90d": 2162,
"posts": 59294,
"source": "/",
"type": "pinterest",
"value": "https://www.pinterest.com/smglobalshop"
},
{
"description": "Our Company We carry official fashion merchandise of sensational kpop groups: EXO, Super Junior, Girls’ Generation, Red Velvet, NCT U, NCT 127, NCT DREAM, SH...",
"followers": 6730,
"followers_30d": -10,
"followers_90d": -44,
"source": "/",
"type": "youtube",
"value": "https://www.youtube.com/channel/UCL1_pRoCbh2OigKKmN5rP7Q"
},
{
"followers": 41700,
"followers_90d": -1248,
"source": "/",
"type": "tiktok",
"value": "https://tiktok.com/@smglobalshop"
}
],
"aliases": [
"sgs-x-sm.myshopify.com"
],
"apps": [
{
"removed_at": "2023-01-31T13:21:49.093467662Z",
"installed_at": "2020-03-14T14:39:11Z",
"average_rating": "4.1",
"app_store_url": "https://apps.shopify.com/afterpay-installer",
"state": "Inactive",
"free_trial_duration": "168h0m0s",
"description": "Shop Now. Enjoy Now. Pay Later. - Automatic Installation",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/675346bd5197de88633339cacf356906/icon/CKXmis_0lu8CEAE=.png?height=60\u0026width=60",
"name": "Afterpay Install (Unofficial)",
"token": "afterpay-installer",
"platform": "shopify",
"vendor_name": "Crucial Commerce Apps",
"vendor_url": "https://apps.shopify.com/partners/crucial-commerce-apps",
"vendor_email": "hello@crucialcommerceapps.com",
"vendor_website": "https://crucialcommerceapps.com/",
"id": "1.afterpay-installer",
"created_at": "2020-01-13T00:00:00",
"plans": [
{
"name": "$0.99/month",
"monthly_cost": "$0.99/month",
"monthly_cost_cents": 99
}
],
"categories": [
"marketing"
],
"review_count": 39,
"installs": 1246,
"instp": 0.0006161758524342902,
"installs_30d": -77,
"installs_90d": -159
},
{
"installed_at": "2020-08-14T07:26:59Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/ampify-me",
"state": "Active",
"description": "Boost your site traffic \u0026 sales with The AMP App. AMP pages that load at lightning speed.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/7ace791b36a8f50b92e346d3bf549762/icon/CJP0j7z0lu8CEAE=.png",
"name": "The AMP app",
"token": "ampify-me",
"platform": "shopify",
"vendor_name": "Ampify Pte. Ltd.",
"vendor_email": "info@ampifyme.com",
"vendor_website": "https://ampifyme.com/apps/amp",
"id": "1.ampify-me",
"created_at": "2018-05-16T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Hobbyist",
"monthly_cost": "$9.99/month",
"monthly_cost_cents": 999
},
{
"name": "Small Company",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
}
],
"categories": [
"seo",
"speed optimization"
],
"integrates_with": [
"Shopify Product reviews - Yotpo - Judge.me - Loox - Stamped.io - Shopper Approved",
"Google AMP - Accelerated Mobile Pages",
"AMP - Google AMP - AMP Project.org - SEO",
"Google Analytics \u0026 Tag Manager",
"PWA",
"Metafields - LD+JSON - SEO"
],
"review_count": 410,
"installs": 2643,
"instp": 0.0013070247014316445,
"installs_30d": -56,
"installs_90d": -50
},
{
"installed_at": "2019-10-14T22:55:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/growave",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Boost customer loyalty \u0026 repeat purchases. Leverage rewards, reviews, UGC, wishlists to grow sales",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/59da3ad107e08fd5430db47cc4e0a75c/icon/CKq1o6jxo_MCEAE=.png",
"name": "Loyalty program, Reviews +3",
"token": "growave",
"platform": "shopify",
"vendor_name": "Growave",
"vendor_email": "support@growave.io",
"vendor_website": "https://www.growave.io/?utm_campaign=english",
"id": "1.growave",
"created_at": "2014-07-14T00:00:00",
"plans": [
{
"name": "BASIC",
"monthly_cost": "$9/month",
"monthly_cost_cents": 900
},
{
"name": "STARTER",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "MEDIUM",
"monthly_cost": "$49/month",
"monthly_cost_cents": 4900
},
{
"name": "ENTERPRISE",
"monthly_cost": "$299/month",
"monthly_cost_cents": 29900
}
],
"categories": [
"loyalty and rewards",
"product reviews"
],
"integrates_with": [
"Pagefly - LayoutHub",
"GemPages - Shopney",
"Klaviyo - Omnisend",
"Gorgias - Avada",
"PushOwl - Ampify",
"Postscript - Recharge"
],
"review_count": 1826,
"installs": 11926,
"instp": 0.005897683159013921,
"installs_30d": -103,
"installs_90d": -314,
"reviews_30d": 11,
"reviews_90d": 30
},
{
"installed_at": "2019-12-08T01:08:56Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/omnisend",
"state": "Active",
"description": "Send email marketing and newsletter campaigns. Use popups to capture emails, which can boost sales.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9b0c952ebdfd9d278f559665ecf48f5c/icon/CODw6NWe6_YCEAE=.png",
"name": "Omnisend Email Marketing \u0026 SMS",
"token": "omnisend",
"platform": "shopify",
"vendor_name": "Omnisend",
"vendor_email": "support@omnisend.com",
"vendor_website": "https://www.omnisend.com",
"id": "1.omnisend",
"created_at": "2014-03-10T00:00:00",
"plans": [
{
"name": "FREE",
"monthly_cost": "Free to install"
},
{
"name": "STANDARD",
"monthly_cost": "$16/month",
"monthly_cost_cents": 1600
},
{
"name": "PRO",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
}
],
"categories": [
"abandoned cart",
"email marketing"
],
"integrates_with": [
"Gorgias",
"Justuno",
"Recharge",
"Aftership",
"LoyaltyLion",
"Loox"
],
"review_count": 4814,
"installs": 69706,
"instp": 0.03447123111539698,
"installs_30d": 5205,
"installs_90d": 6070,
"reviews_30d": 69,
"reviews_90d": 220
},
{
"installed_at": "2022-02-21T11:23:53Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/one",
"state": "Active",
"free_trial_duration": "240h0m0s",
"description": "All‑in‑One | Email/SMS Marketing, Checkout Upsell, Pop Ups, Social Proof, SEO, Cart Recovery \u0026 more",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/5bdeb0a5ba2b3641097f008a67cc23eb/icon/CN_DqYjGq_UCEAE=.png",
"name": "Upsell—Pop Ups—Email Marketing",
"token": "one",
"platform": "shopify",
"vendor_name": "ONE",
"vendor_email": "support@one.store",
"vendor_website": "https://one.store/?utm_campaign=developer_website_en\u0026utm_content=text_link",
"id": "1.one",
"created_at": "2019-03-22T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free to install"
},
{
"name": "STARTER",
"monthly_cost": "$6/month",
"monthly_cost_cents": 600
},
{
"name": "BASIC",
"monthly_cost": "$9/month",
"monthly_cost_cents": 900
},
{
"name": "PRO",
"monthly_cost": "$12/month",
"monthly_cost_cents": 1200
}
],
"categories": [
"email marketing",
"upselling and cross-selling"
],
"integrates_with": [
"Klaviyo",
"Mailchimp",
"Seguno \u0026 Omnisend",
"SMSBump \u0026 Yotpo",
"Sendinblue \u0026 Aweber",
"Drip \u0026 ZoHo \u0026 9 More"
],
"review_count": 2292,
"installs": 27916,
"instp": 0.013805108424201963,
"installs_30d": 696,
"installs_90d": 3741,
"reviews_30d": 42,
"reviews_90d": 247
},
{
"installed_at": "2020-10-02T03:37:10Z",
"average_rating": "4.6",
"app_store_url": "https://apps.shopify.com/order-limits-minmaxify",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Customize and manage the quantities of products in your cart using advanced limit setting options",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/a04c143bd308483d7a0f055ee1be9d64/icon/CLjmhfDv2vACEAE=.png",
"name": "Order Limits ‑ MinMaxify",
"token": "order-limits-minmaxify",
"platform": "shopify",
"vendor_name": "Intillium",
"vendor_email": "support@minmaxify.com",
"vendor_website": "http://www.minmaxify.com",
"id": "1.order-limits-minmaxify",
"created_at": "2012-10-29T00:00:00",
"plans": [
{
"name": "BASIC",
"monthly_cost": "$4.99/month",
"monthly_cost_cents": 499
}
],
"categories": [
"order limits"
],
"integrates_with": [
"Order limit"
],
"review_count": 170,
"installs": 13842,
"instp": 0.006845189525999555,
"installs_30d": -728,
"installs_90d": -578
},
{
"installed_at": "2021-02-20T08:39:31Z",
"average_rating": "5",
"app_store_url": "https://apps.shopify.com/personizely",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Uncover your conversion potential. The easiest way to create email popups, forms, and so much more.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d4d8a6223db9bec9451a3f57a5379dcc/icon/CPTIqu-n2fYCEAE=.png",
"name": "Email Popups \u0026 Upsell Pop ups",
"token": "personizely",
"platform": "shopify",
"vendor_name": "Personizely",
"vendor_email": "info@personizely.net",
"vendor_website": "https://www.personizely.net/",
"id": "1.personizely",
"created_at": "2018-09-26T00:00:00",
"plans": [
{
"name": "STARTER",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "BASIC",
"monthly_cost": "$59/month",
"monthly_cost_cents": 5900
},
{
"name": "PLUS",
"monthly_cost": "$129/month",
"monthly_cost_cents": 12900
}
],
"categories": [
"popups",
"upselling and cross-selling"
],
"integrates_with": [
"Mailchimp",
"Omnisend",
"Klaviyo",
"ActiveCampaign",
"Campaign Monitor",
"CM Commerce"
],
"review_count": 218,
"installs": 1585,
"instp": 0.0007838192023341493,
"installs_30d": -13,
"installs_90d": -23,
"reviews_30d": 2,
"reviews_90d": 8
},
{
"installed_at": "2019-12-08T01:08:56Z",
"average_rating": "4.7",
"app_store_url": "https://apps.shopify.com/preorder-now",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "PreOrder Now is a pre-order app that replaces out of stock with preorder buttons.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9ddcd09d5748d59dd30ad51a5a743946/icon/CIflqJio1PsCEAE=.jpeg",
"name": "Pre‑Order Now WOD",
"token": "preorder-now",
"platform": "shopify",
"vendor_name": "Website On-Demand",
"vendor_email": "preorder-now@websiteondemand.ca",
"vendor_website": "https://websiteondemand.ca/",
"id": "1.preorder-now",
"created_at": "2017-06-21T00:00:00",
"plans": [
{
"name": "Free Plan",
"monthly_cost": "Free"
},
{
"name": "Shopify Basic",
"monthly_cost": "$19.95/month",
"monthly_cost_cents": 1995
},
{
"name": "Shopify Standard",
"monthly_cost": "$39.95/month",
"monthly_cost_cents": 3995
},
{
"name": "Shopify Advanced",
"monthly_cost": "$59.95/month",
"monthly_cost_cents": 5995
}
],
"categories": [
"pre-orders",
"stock alerts"
],
"integrates_with": [
"Google Analytics",
"In Cart Upsell",
"Product Customizer",
"Trackify X",
"Pagefly"
],
"review_count": 1058,
"installs": 10233,
"instp": 0.005060455455826719,
"installs_30d": -72,
"installs_90d": 5,
"reviews_30d": 29,
"reviews_90d": 77
},
{
"installed_at": "2023-01-26T20:14:20Z",
"average_rating": "4.9",
"app_store_url": "https://apps.shopify.com/product-filter-search",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Boost Conversion rate \u0026 Optimize ROI with Advanced Product Filter and Smart Search app",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/d4172f8181a20b56ade67cc448fac594/icon/CLzL1pCM9vMCEAE=.png",
"name": "Boost Product Filter \u0026 Search",
"token": "product-filter-search",
"platform": "shopify",
"vendor_name": "Boost Commerce",
"vendor_email": "support@boostcommerce.net",
"vendor_website": "https://boostcommerce.net",
"id": "1.product-filter-search",
"created_at": "2017-01-17T00:00:00",
"plans": [
{
"name": "Regular 1",
"monthly_cost": "$19/month",
"monthly_cost_cents": 1900
},
{
"name": "Regular 2",
"monthly_cost": "$29/month",
"monthly_cost_cents": 2900
},
{
"name": "Plus",
"monthly_cost": "$69/month",
"monthly_cost_cents": 6900
},
{
"name": "Development Mode",
"monthly_cost": "Free"
}
],
"categories": [
"navigation and filters",
"search"
],
"integrates_with": [
"Judge.me",
"Wishlist Plus",
"Weglot",
"GemPages",
"Currency Converter",
"Product Labels"
],
"review_count": 1505,
"installs": 20744,
"instp": 0.010258388349034444,
"installs_30d": 7461,
"installs_90d": 8713,
"reviews_30d": 29,
"reviews_90d": 79
},
{
"installed_at": "2019-12-01T02:37:07Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/ultimate-sales-boost",
"state": "Active",
"description": "Ultimate Sales Boost offers 30+ widgets and tools to promote sales on every page of your website.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/999f9fea413c682a9ef65825272813e8/icon/CNO_w-KJm_QCEAE=.png",
"name": "Hextom: Ultimate Sales Boost",
"token": "ultimate-sales-boost",
"platform": "shopify",
"vendor_name": "Hextom",
"vendor_email": "help@hextom.com",
"vendor_website": "https://hextom.com",
"id": "1.ultimate-sales-boost",
"created_at": "2018-04-04T00:00:00",
"plans": [
{
"name": "Starter Plan",
"monthly_cost": "Free"
},
{
"name": "Basic Plan",
"monthly_cost": "$9.99/month",
"monthly_cost_cents": 999
},
{
"name": "Professional Plan",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
},
{
"name": "Advanced Plan",
"monthly_cost": "$79.99/month",
"monthly_cost_cents": 7998
}
],
"categories": [
"countdown timer",
"trust badges"
],
"integrates_with": [
"Translate My Store",
"GemPages",
"PageFly"
],
"review_count": 7553,
"installs": 33939,
"instp": 0.01678362139307173,
"installs_30d": -799,
"installs_90d": -1019,
"reviews_30d": 35,
"reviews_90d": 87
},
{
"installed_at": "2021-02-20T08:39:31Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/ultimate-search-and-filter-1",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "SoBooster Search help drives more sales by optimizing search \u0026 filter capability.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/b919da6d5ebc14aec79291ee451ae3fa/icon/CKjb1ILPn-8CEAE=.png",
"name": "Smart Search \u0026 Product Filter",
"token": "ultimate-search-and-filter-1",
"platform": "shopify",
"vendor_name": "⭐ SoBooster ⭐",
"vendor_email": "support@sobooster.com",
"vendor_website": "https://sobooster.com",
"id": "1.ultimate-search-and-filter-1",
"created_at": "2020-01-09T00:00:00",
"plans": [
{
"name": "Starter",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Essential",
"monthly_cost": "$18.99/month",
"monthly_cost_cents": 1898
},
{
"name": "Standard",
"monthly_cost": "$29.99/month",
"monthly_cost_cents": 2999
}
],
"categories": [
"navigation and filters",
"page enhancements - other"
],
"integrates_with": [
"quick view",
"review",
"wishlist",
"currency",
"multilingual"
],
"review_count": 419,
"installs": 1970,
"instp": 0.0009742106174121604,
"installs_30d": -275,
"installs_90d": -148,
"reviews_30d": 7,
"reviews_90d": 23
},
{
"installed_at": "2022-01-06T11:54:10Z",
"average_rating": "1",
"app_store_url": "https://apps.shopify.com/ultimate-search-filter-year-make-model",
"state": "Active",
"free_trial_duration": "336h0m0s",
"description": "Year Make Model Filter Search",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/f2a6c1a0b7bdd544cb9bad4e31c4195a/icon/CLLQmcX0-_QCEAE=.png",
"name": "Year Make Model Filter Search",
"token": "ultimate-search-filter-year-make-model",
"platform": "shopify",
"vendor_name": "⭐ SoBooster ⭐",
"vendor_email": "support@sobooster.com",
"vendor_website": "https://sobooster.com",
"id": "1.ultimate-search-filter-year-make-model",
"created_at": "2020-02-19T00:00:00",
"plans": [
{
"name": "Basic",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
},
{
"name": "Premium",
"monthly_cost": "$199.99/month",
"monthly_cost_cents": 19999
}
],
"categories": [
"banners",
"countdown timer"
],
"review_count": 1,
"installs": 2451,
"instp": 0.0012120762554706625,
"installs_30d": -289,
"installs_90d": -117
},
{
"installed_at": "2020-05-24T01:49:28Z",
"average_rating": "4.8",
"app_store_url": "https://apps.shopify.com/watchlist",
"state": "Active",
"free_trial_duration": "720h0m0s",
"description": "Send shoppers automated email or SMS back in stock alerts when you restock products.",
"icon_url": "https://cdn.shopify.com/app-store/listing_images/9905a4c8f22cb4a3b0c32af55a58ec21/icon/CMuIhZLGx_MCEAE=.jpeg",
"name": "Swym Back in Stock Alerts",
"token": "watchlist",
"platform": "shopify",
"vendor_name": "Swym Corporation",
"vendor_email": "support@swymcorp.com",
"vendor_website": "http://swym.it/apps/in-stock-alerts/",
"id": "1.watchlist",
"created_at": "2016-10-13T00:00:00",
"plans": [
{
"name": "Free",
"monthly_cost": "Free"
},
{
"name": "Starter",
"monthly_cost": "$14.99/month",
"monthly_cost_cents": 1499
},
{
"name": "Pro",
"monthly_cost": "$49.99/month",
"monthly_cost_cents": 4999
},
{
"name": "Premium",
"monthly_cost": "$99.99/month",
"monthly_cost_cents": 9999
}
],
"categories": [
"email marketing",
"back in stock alert"
],
"integrates_with": [
"Klaviyo - Omnisend",
"Sailthru - Listrak",
"Bluecore - Bloomreach",
"ReSci - Postscript",
"dotDigital - Optimizely",
"Cordial - Ometria"
],
"review_count": 599,
"installs": 16765,
"instp": 0.008290680711124298,
"installs_30d": 10835,
"installs_90d": 11976,
"reviews_30d": 1,
"reviews_90d": 7
}
],
"categories": [
"/Apparel"
],
"technologies": [
{
"installed_at": "2020-03-14T14:39:11Z",
"name": "Afterpay",
"description": "Afterpay lets you buy what you want today, pay for it in four equal installments, interest-free.",
"icon_url": "https://storeleads.app/img/tech/afterpay.png",
"installs": 148548
},
{
"installed_at": "2020-11-19T07:45:15Z",
"name": "Apple Pay",
"description": "Make contactless, secure purchases in stores, in apps, and on the web.",
"icon_url": "https://storeleads.app/img/tech/apple_pay.png",
"installs": 1153681
},
{
"installed_at": "2021-06-08T15:44:25Z",
"name": "Cloudflare CDN",
"description": "Protect and accelerate your websites, apps, and teams.",
"icon_url": "https://storeleads.app/img/tech/cloudflare.png",
"installs": 2822666
},
{
"installed_at": "2020-02-01T09:45:01Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2488144
},
{
"installed_at": "2020-02-01T09:45:01Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 1199454
},
{
"installed_at": "2022-02-05T00:26:07Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3176400
},
{
"installed_at": "2020-02-01T09:45:01Z",
"name": "Google Analytics",
"description": "Google Analytics gives you the tools you need to better understand your customers. You can then use those business insights to take action, such as improving your website, creating tailored audience lists, and more.",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"installs": 3419767
},
{
"installed_at": "2022-06-03T02:40:00Z",
"name": "Google Analytics Enhanced Ecommerce",
"description": "Enables the measurement of user interactions with products on ecommerce websites across the user's shopping experience, including: product impressions, product clicks, viewing product details, adding a product to a shopping cart, initiating the checkout process, transactions, and refunds.",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"installs": 618161
},
{
"installed_at": "2020-11-19T07:45:15Z",
"name": "Google Pay",
"description": "Google Pay is the fast, simple way to pay online, in stores and more.",
"icon_url": "https://storeleads.app/img/tech/googlepay.png",
"installs": 997128
},
{
"installed_at": "2020-12-15T17:31:54Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 3288016
},
{
"installed_at": "2020-04-03T07:56:13Z",
"name": "Instafeed.js",
"description": "Instafeed.js is a dead-simple way to add Instagram photos to your website.",
"icon_url": "https://storeleads.app/img/spacer.png",
"installs": 62931
},
{
"installed_at": "2023-01-19T18:56:02Z",
"name": "Omnisend",
"description": "Take the shortcut to revenue growth with Omnisend’s easy-to-use platform for ecommerce email marketing, SMS and automation.",
"icon_url": "https://storeleads.app/img/tech/omnisend.png",
"installs": 69510
},
{
"installed_at": "2022-12-10T12:02:48Z",
"name": "Personizely",
"description": "Personizely provides popups, website personalization and A/B Testing in one suite.",
"icon_url": "https://storeleads.app/img/tech/personizely.png",
"installs": 1728
},
{
"installed_at": "2021-12-14T12:38:07Z",
"name": "Pinterest Pixel",
"description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
"icon_url": "https://storeleads.app/img/tech/pinterest.png",
"installs": 351697
},
{
"installed_at": "2021-01-09T01:38:47Z",
"name": "Shop Pay",
"description": "Shop Pay remembers your important details, so you can fill carts, not forms. And everything is encrypted so you can speed safely through checkout.",
"icon_url": "https://storeleads.app/img/tech/shop.png",
"installs": 1009313
},
{
"installed_at": "2020-05-16T19:07:55Z",
"name": "Swym",
"description": "Over 19,000 merchants use Swym to create optimized shopping experiences.",
"icon_url": "https://storeleads.app/img/tech/swym.png",
"installs": 22653
},
{
"installed_at": "2020-10-02T03:37:10Z",
"name": "TikTok Pixel",
"description": "TikTok For Business is where you can unleash your brand's creative side. A fully immersive no judgement world where there's an audience for every voice.",
"icon_url": "https://storeleads.app/img/tech/tiktok.png",
"installs": 393118
}
],
"cluster_domains": [
"smglobalshop.com",
"superm.smglobalshop.com"
],
"features": [
"International Shipping",
"Has Blog"
],
"shipping_carriers": [
"UPS",
"USPS",
"Fedex"
],
"tags": [
"Trending on Pinterest"
],
"ships_to_countries": [
"International"
],
"rank_percentile": 0.0022,
"rank": 256,
"latitude": 34.0522342,
"platform_rank_percentile": 0.0023,
"longitude": -118.2436849,
"estimated_sales": 16637818,
"alexa_rank": 163065,
"cc_rank": 1608382,
"cc_centrality": 184860,
"product_count": 408,
"max_price": 25000,
"monthly_app_spend": 15896,
"min_price": 500,
"variant_count": 1002,
"vendor_count": 13,
"avg_price": 2728,
"platform_rank": 57
},
{
"theme": {
"name": "Unknown",
"style": "Unknown",
"vendor": "Unknown",
"version": "Unknown"
},
"alternates": {
"de-de": "www.kidkraft.com",
"en-ad": "www.kidkraft.com",
"en-al": "www.kidkraft.com",
"en-am": "www.kidkraft.com",
"en-at": "www.kidkraft.com",
"en-au": "www.kidkraft.com",
"en-ba": "www.kidkraft.com",
"en-be": "www.kidkraft.com",
"en-bg": "www.kidkraft.com",
"en-by": "www.kidkraft.com",
"en-ca": "www.kidkraft.com",
"en-ch": "www.kidkraft.com",
"en-cy": "www.kidkraft.com",
"en-cz": "www.kidkraft.com",
"en-dk": "www.kidkraft.com",
"en-ee": "www.kidkraft.com",
"en-es": "www.kidkraft.com",
"en-fi": "www.kidkraft.com",
"en-fo": "www.kidkraft.com",
"en-gb": "www.kidkraft.com",
"en-ge": "www.kidkraft.com",
"en-gi": "www.kidkraft.com",
"en-gr": "www.kidkraft.com",
"en-hr": "www.kidkraft.com",
"en-hu": "www.kidkraft.com",
"en-ie": "www.kidkraft.com",
"en-im": "www.kidkraft.com",
"en-is": "www.kidkraft.com",
"en-li": "www.kidkraft.com",
"en-lt": "www.kidkraft.com",
"en-lv": "www.kidkraft.com",
"en-mc": "www.kidkraft.com",
"en-md": "www.kidkraft.com",
"en-me": "www.kidkraft.com",
"en-mk": "www.kidkraft.com",
"en-mt": "www.kidkraft.com",
"en-nl": "www.kidkraft.com",
"en-no": "www.kidkraft.com",
"en-pl": "www.kidkraft.com",
"en-pt": "www.kidkraft.com",
"en-ro": "www.kidkraft.com",
"en-rs": "www.kidkraft.com",
"en-ru": "www.kidkraft.com",
"en-se": "www.kidkraft.com",
"en-si": "www.kidkraft.com",
"en-sk": "www.kidkraft.com",
"en-sm": "www.kidkraft.com",
"en-tr": "www.kidkraft.com",
"en-ua": "www.kidkraft.com",
"en-us": "www.kidkraft.com",
"en-va": "www.kidkraft.com",
"fr-be": "www.kidkraft.com",
"fr-fr": "www.kidkraft.com",
"it-it": "www.kidkraft.com",
"nl-be": "www.kidkraft.com",
"nl-nl": "www.kidkraft.com"
},
"cluster_best_ranked": "www.kidkraft.com",
"city": "Dallas",
"last_updated_at": "2023-01-25T00:00:00",
"subregion": "Northern America",
"country_code": "US",
"currency_code": "USD",
"title": "Destinations for Playing, Exploring and Living | KidKraft US",
"administrative_area_level_1": "Texas",
"state": "Active",
"icon": "https://www.kidkraft.com/static/version1673506112/frontend/Smartwave/porto_ada/en_US/images/favicons/apple-touch-icon.png",
"returns_page": "https://www.kidkraft.com/us_en/return-policy",
"region": "Americas",
"language_code": "en",
"tracking_page": "https://www.kidkraft.com/us_en/play-sets-and-activity-tables/adventure-tracks.html",
"platform_domain": "www.kidkraft.com",
"platform": "magento",
"location": "Dallas, TX, USA",
"magento_version": "2.4",
"merchant_name": "KidKraft US",
"warranty_page": "https://www.kidkraft.com/us_en/warranty",
"keywords": "toys, playsets, dollhouses, playhouses, train sets, train tables",
"created_at": "2018-11-02T00:00:00",
"name": "www.kidkraft.com",
"description": "Visit the Official Toy Site of KidKraft.com for Toys, Kids Furniture, \u0026 Outdoor Playhouses and more.",
"retailer_page": "https://www.kidkraft.com/us_en/retailer-exclusives.html",
"contact_info": [
{
"description": "Official Twitter account of KidKraft, Inc. https://t.co/g5vxAyNGFV\nhttps://t.co/1wxa6TeXkx…\nhttps://t.co/6L0kv2RIa4",
"followers": 6524,
"followers_90d": -37,
"posts": 2180,
"source": "/us_en",
"type": "twitter",
"value": "https://twitter.com/kidkraft"
},
{
"category": "Product/Service",
"followers": 218967,
"followers_90d": 3735,
"likes": 216657,
"source": "/us_en",
"type": "facebook",
"value": "https://www.facebook.com/kidkraft"
},
{
"category": "Personal Goods \u0026 General Merchandise Stores",
"description": "Show us how you play! Use #kidkraftkids for the chance to be featured 🤩",
"followers": 256238,
"posts": 1399,
"source": "/us_en",
"type": "instagram",
"value": "https://www.instagram.com/kidkrafttoys"
},
{
"description": "KidKraft | Est. 1968. Our goal is to inspire children with the power of their imagination through unique and creative wooden toys and room furnishings!",
"followers": 7571,
"followers_30d": 60,
"followers_90d": 177,
"posts": 18457,
"source": "/us_en",
"type": "pinterest",
"value": "https://www.pinterest.com/kidkraft"
},
{
"source": "/us_en",
"type": "phone",
"value": "+1 (800) 933-0771"
},
{
"description": "We aim to inspire imaginative play for children everywhere.For over 50 years, KidKraft has been crafting toys and furniture to amplify and enrich childhood t...",
"followers": 22600,
"source": "/us_en",
"type": "youtube",
"value": "https://www.youtube.com/user/KidKraftBrand"
},
{
"followers": 3800,
"followers_90d": 109,
"source": "/us_en",
"type": "tiktok",
"value": "https://www.tiktok.com/@kidkrafttoys"
},
{
"source": "/us_en/return-policy",
"type": "email",
"value": "customerservice@kidkraft.com"
},
{
"source": "/us_en/warranty",
"type": "email",
"value": "aucustomerservice@kidkraft.com"
},
{
"source": "/us_en/warranty",
"type": "email",
"value": "europecustomerservice@kidkraft.com"
},
{
"source": "/us_en/terms-of-use",
"type": "email",
"value": "marketing@kidkraft.com"
},
{
"source": "/us_en/terms-of-use",
"type": "phone",
"value": "+18334161294"
},
{
"type": "linkedin",
"value": "https://www.linkedin.com/company/kidkraft"
}
],
"aliases": [
"mc-prod-assembly.kidkraft.com"
],
"apps": [
{
"installed_at": "2021-06-25T04:47:22Z",
"average_rating": "4.8",
"app_store_url": "https://marketplace.magento.com/amasty-amasty-shopby.html",
"state": "Active",
"description": "This module equips your site with a neat and intuitive navigation, that is adjusted to the market needs and constantly being updated.",
"icon_url": "https://marketplace.magento.com/media/catalog/product/cache/cc46e20e0a519cf92e024f4762fc8af3/i/m/improved_layered_navigation_1_2.png",
"name": "Improved Layered Navigation",
"token": "amasty-amasty-shopby",
"platform": "magento",
"vendor_name": "Amasty",
"vendor_url": "https://marketplace.magento.com/partner/Amasty",
"vendor_email": "support@amasty.com",
"vendor_website": "https://marketplace.magento.com/partner/Amasty",
"id": "10.amasty-amasty-shopby",
"created_at": "2019-10-23T00:00:00",
"categories": [
"content \u0026 customizations",
"site search \u0026 navigation"
],
"review_count": 206,
"installs": 15296,
"instp": 0.09424928986462756,
"installs_30d": -44,
"installs_90d": 131
}
],
"categories": [
"/Toys \u0026 Hobbies"
],
"technologies": [
{
"installed_at": "2021-04-08T22:53:57Z",
"name": "Affirm",
"description": "Affirm lets you shop stress-free at thousands of stores, with no late fees and no surprises. Just select Affirm at checkout.",
"icon_url": "https://storeleads.app/img/tech/affirm.png",
"installs": 13021
},
{
"installed_at": "2020-07-02T05:32:29Z",
"name": "Baazarvoice",
"description": "Connect shoppers with authentic content they trust.",
"icon_url": "https://storeleads.app/img/tech/bazaarvoice.png",
"installs": 4859
},
{
"installed_at": "2020-01-10T09:37:06Z",
"name": "Bing Ads",
"description": "Bing Ads conversion tracking collects data that allows you to track conversion goals and target audiences with remarketing lists.",
"icon_url": "https://storeleads.app/img/tech/bingads.png",
"installs": 89816
},
{
"installed_at": "2020-07-02T05:32:29Z",
"name": "Curalate",
"description": "Curalate lets you use social content and audiences to sell more effectively online.",
"icon_url": "https://storeleads.app/img/tech/curalate.png",
"installs": 1813
},
{
"installed_at": "2020-01-10T09:37:06Z",
"name": "Facebook Pixel",
"description": "Facebook pixel is an analytics tool that consists of a code that can be placed on an online store to track site visitors. This data allows you to track effectiveness of advertising, retarget those users with Facebook ads in the future, as well as see what they’re doing on your site when they return.",
"icon_url": "https://storeleads.app/img/facebook.png",
"installs": 2488144
},
{
"installed_at": "2022-01-14T20:54:42Z",
"name": "Google Ads Pixel",
"description": "The Google Ads Pixel is used to track conversions for Google Ads. Google Ads conversion tracking shows you what happens after a customer clicks on your ads – whether they purchased a product, signed up for your newsletter, called your business, or downloaded your app. When a customer completes an action that you've defined as valuable, these customer actions are called conversions.",
"icon_url": "https://storeleads.app/img/tech/adwords.png",
"installs": 1199454
},
{
"installed_at": "2022-03-04T14:58:45Z",
"name": "Google Adsense",
"description": "Earn money with website monetization from Google AdSense.",
"icon_url": "https://storeleads.app/img/tech/adsense.png",
"installs": 3176400
},
{
"installed_at": "2022-03-04T14:58:45Z",
"name": "Google Analytics",
"description": "Google Analytics gives you the tools you need to better understand your customers. You can then use those business insights to take action, such as improving your website, creating tailored audience lists, and more.",
"icon_url": "https://storeleads.app/img/tech/ga.png",
"installs": 3419767
},
{
"installed_at": "2020-01-10T09:37:06Z",
"name": "Google Tag Manager",
"description": "Google Tag Manager is a tag management system (TMS) that allows you to quickly and easily update tracking codes and related code fragments collectively known as tags on your website or mobile app.",
"icon_url": "https://storeleads.app/img/tech/gtm.png",
"installs": 3288016
},
{
"installed_at": "2022-07-06T21:52:24Z",
"name": "Hotjar",
"description": "Hotjar lets you see how visitors are really using your website, collect user feedback and turn more visitors into customers.",
"icon_url": "https://storeleads.app/img/tech/hotjar.png",
"installs": 272477
},
{
"installed_at": "2020-09-28T23:35:32Z",
"name": "Impact",
"description": "Impact's Partnership Cloud lets you expand your program and scale every type of partnership, including affiliates, influencers, strategic business partners, mobile apps, publishers, and more.",
"icon_url": "https://storeleads.app/img/tech/impact.png",
"installs": 854
},
{
"installed_at": "2021-05-17T23:38:20Z",
"name": "Klaviyo",
"description": "Klaviyo is the growth marketing platform built for online businesses.",
"icon_url": "https://storeleads.app/img/tech/klaviyo.png",
"installs": 309745
},
{
"installed_at": "2020-01-10T09:37:06Z",
"name": "New Relic",
"description": "New Relic lets you work smarter and solve problems faster with a unified view of your software and systems.",
"icon_url": "https://storeleads.app/img/tech/newrelic.png",
"installs": 389869
},
{
"installed_at": "2022-03-04T14:58:45Z",
"name": "Pinterest Pixel",
"description": "The Pinterest tag gathers conversion insights and builds audiences to target based on actions they’ve taken on your site.",
"icon_url": "https://storeleads.app/img/tech/pinterest.png",
"installs": 351697
},
{
"installed_at": "2022-05-04T09:46:25Z",
"name": "PowerReviews",
"description": "PowerReviews helps build the brands shoppers trust.",
"icon_url": "https://storeleads.app/img/tech/powerreviews.png",
"installs": 2568
},
{
"installed_at": "2021-01-13T18:17:53Z",
"name": "PriceSpider",
"description": "Optimize the digital shelf with analytic tools for monitoring digital commerce, tracking performance, driving conversion, and taking action based on these inputs.",
"icon_url": "https://storeleads.app/img/tech/pricespider.png",
"installs": 477
},
{
"installed_at": "2020-02-24T18:36:20Z",
"name": "SpeedCurve LUX",
"description": "LUX (which stands for Live User eXperience) gives you standard RUM metrics like page load time and start render.",
"icon_url": "https://storeleads.app/img/tech/sc_lux.png",
"installs": 625
},
{
"installed_at": "2020-01-10T09:37:06Z",
"name": "Zendesk",
"description": "Zendesk customer service and engagement products are powerful and flexible, and scale to meet the needs of any business.",
"icon_url": "https://storeleads.app/img/tech/zendesk.png",
"installs": 334170
},
{
"installed_at": "2021-09-15T01:15:45Z",
"name": "dotdigital",
"description": "Transforms your customer insight into personalized marketing campaigns.",
"icon_url": "https://storeleads.app/img/tech/dotdigital.png",
"installs": 6347
}
],
"cluster_domains": [
"www.kidkraft.com",
"parts.kidkraft.com",
"parts.kidkraft.eu"
],
"features": [
"Tracking or Returns",
"Returns Page",
"Tracking Page",
"Wholesale/Retailers Page",
"Warranty Page",
"Has Blog"
],
"shipping_carriers": [
"UPS",
"Fedex"
],
"rank_percentile": 0.0029,
"rank": 336,
"latitude": 32.7766642,
"platform_rank_percentile": 0.0136,
"longitude": -96.7969879,
"estimated_sales": 32034780,
"employee_count": 252,
"alexa_rank": 240182,
"cc_rank": 370689,
"cc_centrality": 1531666,
"product_count": 145,
"platform_rank": 22
}
],
"has_next_page": true,
"next_cursor": "5b22205c7530303031403a405c75303030305c75303030305c75303030305c75303030305c75303030305c7530303030222c2239353035343334225d",
"total": 19352
}
Advanced Search for Domains
Sometimes you'll need to filter Domains in a more complex manner than is supported by the various f: request options supported by List Domains.
Example: Complex text queries
As an example, let's say that you want to return all Shopify Domains that match the query "kids" and also match any of the following words: "footwear", "shoes" and "boots". Further, you want to filter out any results that match "ski" or "ballet" because you're not interested in that kind of kids footwear.
This complex search expression can be expressed using the aq request option (which is analogous to Advanced Search in the UI).
The aq request option takes an array of search descriptors. Each descriptor must provide the following values:
- field: the name of the field
- value: the value to query against (multiple values must be comma-separated)
-
operator: the operation to apply when multiple values are provided
- and (default): Returns Domains matching all provided values
- or: Returns Domains matching any of the provided values
- nand: Returns Domains that do not match all of the provided values
- nor: Returns Domains that do not match any of the provided values
Our example query would be represented as:
[ { "field": "q", "value": "kids"}, { "field": "q", "value": "footwear shoes boots", "operator": "or"}, { "field": "q", "value": "ski ballet", "operator": "nor"} ]
Example Request
The example advanced query above can be executed using the following HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"aq":[{"field":"q","value":"kids"},{"field":"q","value":"footwear shoes boots","operator":"or"},{ "field":"q","value":"ski ballet","operator":"nor"}]}' 'https://storeleads.app/json/api/v1/all/domain'
Filters expressed with the aq request option can be combined with other filter request options.
Supported Fields
Advanced queries can be run against the following fields.
- Merchant name
- Home page title tag
- Home page meta description tag
- Home page meta keywords tag
- Technologies
- App names
- Location
- Social media account names
List Domains By TLD1
Returns a list of Domains with the matching TLD1 (top-level-domain plus one). This is useful when you want to list all domains that share a top-level-domain plus one (e.g., all subdomains of "gymshark.com").
Rate limit: 3 requests/second.
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,plans.name
would return the name field from each App and the name field for all plans
on each App.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain/bytld1/gymshark.com?fields=name,language_code,state,rank'
Example Response
{
"domains": [
{
"state": "Active",
"language_code": "en",
"name": "www.gymshark.com",
"rank": 402
},
{
"state": "Active",
"language_code": "en",
"name": "uk.gymshark.com",
"rank": 558
},
{
"state": "Active",
"language_code": "en",
"name": "row.gymshark.com",
"rank": 819
},
{
"state": "Active",
"language_code": "en",
"name": "ca.gymshark.com",
"rank": 859
},
{
"state": "Active",
"language_code": "fr",
"name": "fr.gymshark.com",
"rank": 1106
},
{
"state": "Active",
"language_code": "en",
"name": "au.gymshark.com",
"rank": 1258
},
{
"state": "Active",
"language_code": "de",
"name": "de.gymshark.com",
"rank": 1429
},
{
"state": "Active",
"language_code": "nl",
"name": "nl.gymshark.com",
"rank": 1817
},
{
"state": "Active",
"language_code": "en",
"name": "no.gymshark.com",
"rank": 9347
},
{
"state": "Active",
"language_code": "en",
"name": "se.gymshark.com",
"rank": 12060
},
{
"state": "Active",
"language_code": "en",
"name": "fi.gymshark.com",
"rank": 17804
},
{
"state": "Active",
"language_code": "en",
"name": "dk.gymshark.com",
"rank": 23114
},
{
"state": "Active",
"language_code": "de",
"name": "ch.gymshark.com",
"rank": 26132
},
{
"state": "Active",
"language_code": "en",
"name": "eu.gymshark.com",
"rank": 1420988
},
{
"state": "Active",
"language_code": "en",
"name": "ie.gymshark.com",
"rank": 1434076
},
{
"state": "Active",
"language_code": "en",
"name": "onboarding.gymshark.com",
"rank": 1508733
},
{
"state": "Redirects",
"name": "de-en.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "m.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "www.uk.gymshark.com",
"rank": 14999999
},
{
"state": "Redirects",
"name": "gymshark.com",
"rank": 14999999
}
]
}
Export Domains
Returns all Domains matching the request options. Unlike List Domains, this endpoint does not paginate, instead it returns all Domains matching the query in a single response.
Note you may use the cursor request option of the List Domains endpoint (by passing cursor=all) to return all Domains matching a query. Unlike the Export Domains endpoint, The List Domains endpoint returns all results in a single JSON document (see below for details) and may be easier to use as a result. However, List Domains is much slower so Export Domains should be preferred where possible.
Rate limit: 1 request/minute.
Request Options
Supports the same request options as List Domains.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/domain-export?f:p=shopify&f:cc=US&f:cratyyyymm=2018-11'
Export requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"f:cc":"US","f:cratyyyymm":"2018-11","f:p":"shopify"}' 'https://storeleads.app/json/api/v1/all/domain-export'
Example Response
The export endpoint streams the response as results are generated. Each line is a separate JSON document so be sure to parse the response one line at a time. The resulting domains are grouped into "chunks" which can arrived out-of-order. Each chunk includes an ordinal so that out-of-order results can be sorted if order is significant to your use case.
The first JSON document in the response contains meta information describing the response. It includes the following attributes:
Subsequent documents contain the chunk ordinal and a list of domains within the chunk.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "chunk": 1, "domains": [ {"name": "lidetailers.com", ... } ] }
Error Handling
Since the export endpoint is streamed, we cannot set the HTTP status code (which is set in the HTTP headers at the beginning on the response) when an error occurs in the middle of the stream. As a result, clients need additional error checking when using the export endpoint.
If an error occurs in the middle of a stream, a JSON document describing that error is written to the stream.
{ "chunk_size": 25000, "expected_chunks": 2, "domains": 29830 } { "chunk": 0, "domains": [ {"name": "thaikila.com", ... } ] } { "error": "error description" }
Clients should always verify that the response contained the expected number of chunks (by comparing the number of chunks received against the expected_chunks value in the meta JSON document).
Best Practices
Networks are unreliable and connections often timeout if left open too long. To minimize the likelihood of networking errors, we suggest downloading the results of the export endpoint as quickly as possible. This means that you should do minimal processing of the results until the entire response has been read allowing the TCP connection to close. Depending on the RAM available on your servers and the number of domains that you are retrieving, you may be able to read the entire response into memory. If that is not an option, consider writing the response to a temporary file on disk instead. Then, run whatever processing is necessary on the persisted results.
Historical Domain Data
The Store Leads database only includes information for stores that are currently live. If a store was created in early 2020 but no longer exists, then it is not included in the main Store Leads database. However, there are a variety of use cases that need historical data. We have been archiving our weekly updates since early 2019 and they are available for download to accounts on our Elite Plan.
List Historical Domain Labels
Returns a list of labels identifying the weekly historical domain data. The label is used to download a specific weekly archive.
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/historical/domain'
Example Response
{
"labels": [
"20190218092912",
"20190227134551",
"20190304082117",
"20190311085351",
"20190318082207",
"20190325191823",
"20190403101554",
"20190407214523",
"20190417115057",
"20190421224615",
"20190429090715",
"20190506114709",
"20190513073041",
"20190520073516",
"20190527093528",
"20190603075609",
"20190610074320",
"20190617070742",
"20190624111028",
"20190703124137",
"20190707191027",
"20190715092554",
"20190722093326",
"20190728160710",
"20190805082041",
"20190812075123",
"20190818203216",
"20190826111509",
"20190904111622",
"20190909084125",
"20190916091636",
"20190925122344",
"20190929203713",
"20191007112852",
"20191014091114",
"20191022075327",
"20191029075012",
"20191104100921",
"20191110193432",
"20191118082405",
"20191125180407",
"20191202122535",
"20191210083939",
"20191216090111",
"20191224064444",
"20200107081949",
"20200113084204",
"20200119192542",
"20200128190643",
"20200205134222",
"20200211142710",
"20200218125517",
"20200224092439",
"20200304075613",
"20200310160715",
"20200316181853",
"20200323070939",
"20200329190223",
"20200406085043",
"20200414070452",
"20200420194544",
"20200427074213",
"20200506154523",
"20200511134937",
"20200527084641",
"20200601063420",
"20200609101137",
"20200617134604",
"20200622064615",
"20200629203612",
"20200706102742",
"20200713074823",
"20200720065542",
"20200727071119",
"20200803084521",
"20200812130603",
"20200817072035",
"20200824132034",
"20200901091737",
"20200908072535",
"20200915074744",
"20200921072643",
"20200928075254",
"20201005090041",
"20201012105058",
"20201019093048",
"20201027075023",
"20201103195627",
"20201109094755",
"20201117103343",
"20201123135824",
"20201130070451",
"20201207082905",
"20201214133659",
"20201222075353",
"20201229111529",
"20210105201201",
"20210111145026",
"20210117202955",
"20210125193859",
"20210131195453",
"20210208080330",
"20210216083405",
"20210223150323",
"20210302072701",
"20210309065709",
"20210315202640",
"20210322214628",
"20210329184849",
"20210406205515",
"20210412150450",
"20210419064809",
"20210426074742",
"20210502180739",
"20210510062325",
"20210517060518",
"20210524142656",
"20210530214213",
"20210607023242",
"20210614142232",
"20210621182727",
"20210629013444",
"20210704233531",
"20210711181833",
"20210718200634",
"20210726134443",
"20210802063326",
"20210809023919",
"20210817181726",
"20210823061817",
"20210830073414",
"20210906171310",
"20210912194701",
"20210920074928",
"20210927025807",
"20211005160251",
"20211010181202",
"20211018064626",
"20211026015210",
"20211101042006",
"20211108145039",
"20211114155639",
"20211121234757",
"20211128182059",
"20211206152603",
"20211212185751",
"20211219201107",
"20211226220141",
"20220102231528",
"20220110041749",
"20220116154800",
"20220123181934",
"20220130222422",
"20220206223325",
"20220213191036",
"20220220194254",
"20220227211854",
"20220306235926",
"20220314002910",
"20220320162154",
"20220327194059",
"20220404005545",
"20220410214639",
"20220417145954",
"20220424164423",
"20220502005248",
"20220508172859",
"20220515233416",
"20220522162016",
"20220529155049",
"20220605220333",
"20220612173900",
"20220619204931",
"20220626174212",
"20220703181215",
"20220710180111",
"20220718160959",
"20220724165254",
"20220731193206",
"20220807210841",
"20220815002357",
"20220822060842",
"20220828202008",
"20220905035500",
"20220911200404",
"20220918222642",
"20220925203653",
"20221002233842",
"20221009224958",
"20221016180008",
"20221023204349",
"20221030191052",
"20221106215022",
"20221114024057",
"20221121103515",
"20221128042001",
"20221204230205",
"20221212070236",
"20221219150643",
"20221226040933",
"20230102145518",
"20230109050237",
"20230116024002",
"20230123031133",
"20230129222903"
]
}
List Domains from Historical Data
This endpoint retrieves all domains from a historical dataset. You must provide a label to identify the dataset. It is not possible to filter this endpoint, so all domains that existed at the given time will be included in the results and you'll need to filter the results after retrieving the data.
Data is returned in JSONL format (one document per line).
Use the fields request option to customize the fields included in the response.
Rate limit: 1 request/minute.
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
Nested fields can be specified using a period to separate the field name and the nested field name. For instance,
using fields=name,apps.name
would return the name field from each Domain and the name field for all apps
on each Domain.
Return no more than the provided number of records.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/historical/domain/20210208080330?fields=name,platform&limit=5'
Lists
Lists objects represent a collection of Domains. Learn more about Lists in our Lists documentation. The API allows you to retrieve information for a List based on its name or by showing all lists that exist. Your API key can access information for any List created by any Account in your organization.
The attributes of the List object are documented below.
Retrieve a List
Retrieves the details of a List. You must provide the name of the List to lookup.
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/list/List%20Name'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
}
}
List Lists
Returns a list of Lists that your Account can access.
Rate limit: 3 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/list'
Example Response
{
"lists": [
{
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
}
]
}
Add Domains to List
Adds a set of Domains to a List.
Rate limit: 3 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -X PUT -H "Content-Type: application/json" -d '{"domains": ["kyliecosmetics.com","www.fashionnova.com","unrecognized.com"]}' 'https://storeleads.app/json/api/v1/all/list/List%20Name/add-domains'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
},
"count_domains_added": 2,
"unrecognized_domains": [
"unrecognized.com"
]
}
Remove Domains from List
Removes a set of Domains from a List.
Rate limit: 3 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' -X PUT -H "Content-Type: application/json" -d '{"domains": ["kyliecosmetics.com","www.fashionnova.com","unrecognized.com"]}' 'https://storeleads.app/json/api/v1/all/list/List%20Name/remove-domains'
Example Response
{
"list": {
"id": 3,
"name": "List Name",
"author_email": "foo@example.com",
},
"count_domains_removed": 2,
"unrecognized_domains": [
"unrecognized.com"
]
}
Social Media Accounts
Social Media Account objects represent a handle on a social media network that is associated with a Domain in the Store Leads database.
The attributes of the Social Media Account object are documented below.
Retrieve a Social Media Account
Retrieves the details of a Social Media Account.
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/social?url=https://twitter.com/amazon'
Example Response
{
"details": {
"description": "Delivering smiles one box at a time . Use @AmazonHelp for customer support and @AmazonNews for the latest.",
"followers": 5100000,
"followers_30d": 143047,
"followers_90d": 355609,
"following": 51,
"posts": 45830,
"type": "twitter",
"value": "https://twitter.com/amazon"
},
"domain_names": [
"www.amazon.com",
"www.amazon.fr",
"www.amazon.co.uk",
"www.amazon.es",
"www.amazon.de",
"www.amazon.ca",
"www.amazon.com.mx",
"www.amazon.com.br",
"www.amazon.co.jp"
]
}
Technologies
Technology objects represent a technology that a store can install on their website. Technologies differ from Apps in that they are not installed through the ecommerce platform's App Store and therefore are cross-platform.
The attributes of the Technology object are documented below.
The time at which the Technology was installed by a Domain.
Retrieve a Technology
Retrieves the details of a Technology.
Rate limit: 5 requests/second.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/technology/Yoast'
Example Response
{
"technology": {
"name": "Yoast",
"description": "Yoast helps you with your website optimization, whether it be through our widely used SEO software or our online SEO courses: we're here to help.",
"icon_url": "https://storeleads.app/img/tech/yoast.png",
"installs": 1661060
}
}
List Technologies
Returns a list of Technologies. By default, 50 Technologies are returned in a single request. The page request option can be used to paginate.
Rate limit: 2 requests/second.
Request Options
A comma-separated list of fields to include in the response. All default fields are returned if left blank. If you only need a subset of fields in the response, it is recommended to use this request parameter since it can have a significant impact on response time.
The page of results to return. Default: 0.
The number of Apps to return in a single query. Default: 50, Max: 50.
Changes the sort order. Multiple sort fields can be provided (comma-separated). Prefix fields with a minus sign (-) to denote descending sort order.
Valid fields are:
- installs
Filters Technologies based on a text query.
Example Request
$ curl -H 'Authorization: Bearer your.api.key' 'https://storeleads.app/json/api/v1/all/technology?page_size=2&sort=-installs'
Search requests can also be triggered via HTTP POST.
$ curl -H 'Authorization: Bearer your.api.key' -H "Content-Type: application/json" -X POST -d '{"page_size":2,"sort":"-installs"}' 'https://storeleads.app/json/api/v1/all/technology'
Example Response
{
"technologies": [
{
"name": "Olark",
"description": "Live chat software that makes it easy for customers to talk to you.",
"icon_url": "https://storeleads.app/img/tech/olark.png",
"installs": 7347
},
{
"name": "Rakuten Super Logistics",
"description": "Order fulfillment experts empowering ecommerce retailers.",
"icon_url": "https://storeleads.app/img/tech/rakuten.png",
"installs": 126
}
]
}
Tools
Postman
Postman is an app for easy RESTful API exploration and testing. You can use Postman to test API calls without having to write code.
To help get you started, you can review the Store Leads API in Postman. Then, follow the steps below to test the API interactively using the Postman app.
- If you don't already have it installed, visit https://www.getpostman.com/ and install the Postman client.
- Click the Run in Postman button below to open Postman and import the Store Leads API Postman collection.
Swagger API Specification
The Store Leads API specification is available in Swagger/OpenAPI format.
Supported Languages
We haven't published any SDKs yet but the API specification can be used to automatically generate an SDK for a specific programming language. To do so, you'll need to have a working version of swagger-codegen installed and follow the instructions provided by swagger-codegen.
Webhooks
To be notified as soon as new data is added to the site (which happens weekly, normally on a Monday), you can configure webhooks under the Notifications tab of the Account page.