# Top ranked sites

Read only public server-rendered first-page data; no browser, pagination or enrichment.

- Platform: [BuiltWith](https://docs.upscrape.com/docs/platforms/builtwith)
- Capability ID: `builtwith.sites.top`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "limit": 10
  },
  "capability": "builtwith.sites.top"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `limit` | `integer` | No | Maximum number of results to return. |

### Example input

```json
{
  "limit": 10
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "coverage": "public_http_first_page_only; source rankings and estimates; JS company enrichment excluded",
  "retrievedAt": "2026-09-18T08:43:44Z",
  "sites": [
    {
      "domain": "vimeo.com",
      "employees": null,
      "location": "🇺🇸 United States",
      "rank": 1,
      "salesRevenue": null,
      "social": "200,000+",
      "techSpend": "$10000+",
      "traffic": "Very High"
    },
    {
      "domain": "userway.org",
      "employees": null,
      "location": "🇺🇸 United States",
      "rank": 2,
      "salesRevenue": null,
      "social": "500+",
      "techSpend": "$10000+",
      "traffic": "Very High"
    },
    {
      "domain": "shopify.com",
      "employees": null,
      "location": "🇮🇪 Ireland",
      "rank": 3,
      "salesRevenue": "$2.1b+",
      "social": "1,000,000+",
      "techSpend": "$10000+",
      "traffic": "Very High"
    }
  ],
  "sourceUrl": "https://builtwith.com/top-sites"
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `coverage` | `string` | public_http_first_page_only; source rankings and estimates; JS company … |
| `retrievedAt` | `string` | 2026-09-18T08:43:44Z |
| `sites` | `array` | 3 items |
| `sites` | `array` | 3 items |
| `sourceUrl` | `string` | https://builtwith.com/top-sites |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
