RankParse

Platform Trends

Ranked adoption counts for every detectable website platform — compare how many sites run WordPress vs Shopify vs Wix across Common Crawl.

Returns every supported platform with its total domain count, ordered by popularity. A quick way to gauge market share without paging through /v1/platform-domains.

Costs 1 credit. Takes no parameters.

Request

curl "https://api.rankparse.com/v1/platform-trends" \
  -H "X-API-Key: rp_your_key"

Response

{
  "data": [
    { "platform": "Wix", "platform_slug": "wix", "category": "cms", "count": 1483608 },
    { "platform": "WordPress", "platform_slug": "wordpress", "category": "cms", "count": 288350 },
    { "platform": "Shopify", "platform_slug": "shopify", "category": "ecommerce", "count": 93397 },
    { "platform": "Tilda", "platform_slug": "tilda", "category": "cms", "count": 75565 },
    { "platform": "PayPal", "platform_slug": "paypal", "category": "payments", "count": 68758 }
  ],
  "credits_used": 1,
  "credits_remaining": 999
}

The full response lists all supported platforms (see Platform Domains → Supported platforms). Each platform_slug can be passed straight to /v1/platform-domains to drill into the underlying domains.

On this page