# Discover Trending Websites Worldwide

**Use case:** 

Run a small editable sample to discover Trending Websites Worldwide. Metrics and coverage depend on available website data. Export results to CSV or JSON.

## Input

```json
{
  "mode": "discovery",
  "domains": [
    "apify.com",
    "scraperapi.com",
    "brightdata.com"
  ],
  "includeSimilarSites": false,
  "includeTopKeywords": true,
  "includeAiTraffic": true,
  "includeScreenshot": false,
  "includeRawData": false,
  "includeNoData": true,
  "returnFailureRecords": true,
  "monitorKey": "my-competitors",
  "monitorDepth": "overview",
  "changeThreshold": "medium",
  "onlyChanges": false,
  "marketMapMaxCompetitors": 20,
  "discoveryType": "trending",
  "discoveryCountry": "worldwide",
  "maxResults": 10,
  "enrichDiscovery": true,
  "maxConcurrency": 3,
  "timeout": 15,
  "maxRetries": 2
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "rank": {
    "label": "Discovery rank",
    "format": "integer"
  },
  "rank_change": {
    "label": "Rank change",
    "format": "integer"
  },
  "trend_type": {
    "label": "Trend type",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "discovery_country": {
    "label": "Discovery country",
    "format": "string"
  },
  "monthly_visits": {
    "label": "Monthly visits",
    "format": "integer"
  },
  "mom_growth_percent": {
    "label": "MoM growth (%)",
    "format": "number"
  },
  "global_rank": {
    "label": "Global rank",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Similarweb Scraper — Website Traffic & Competitors](https://apify.com/apivault_labs/similarweb-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/apivault_labs/similarweb-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/apivault_labs/similarweb-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
