{
  "schemaVersion": "1.0",
  "item": {
    "slug": "similarweb-analytics",
    "name": "SimilarWeb Analytics",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/wells1137/similarweb-analytics",
    "canonicalUrl": "https://clawhub.ai/wells1137/similarweb-analytics",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/similarweb-analytics",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=similarweb-analytics",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/similarweb-analytics"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/similarweb-analytics",
    "agentPageUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "SimilarWeb Analytics",
        "body": "Comprehensive website and domain analysis using SimilarWeb traffic data."
      },
      {
        "title": "Core Capabilities",
        "body": "Traffic Analysis: Total visits, unique visitors, traffic trends\nEngagement Metrics: Bounce rate, pages per visit, average visit duration\nGlobal Ranking: Website ranking over time\nTraffic Sources: Marketing channels (desktop and mobile)\nGeographic Distribution: Traffic breakdown by country"
      },
      {
        "title": "API Usage",
        "body": "All APIs use ApiClient from /opt/.manus/.sandbox-runtime. Common parameters:\n\ndomain: Website domain (e.g., \"google.com\")\nstart_date: Start date (YYYY-MM). Max 12 months ago\nend_date: End date (YYYY-MM). Max 12 months ago, default is 1 month ago (most recent complete month)\nmain_domain_only: Exclude subdomains if True (default: False)\n\nDefault time ranges vary by API:\n\nGlobal Rank, Visits Total, Unique Visit, Bounce Rate: default 6 months\nTraffic Sources (Desktop/Mobile), Traffic by Country: default 3 months"
      },
      {
        "title": "Get Global Rank",
        "body": "import sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_global_rank', path_params={'domain': 'amazon.com'})"
      },
      {
        "title": "Get Website Visits Total",
        "body": "import sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_visits_total',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})"
      },
      {
        "title": "Get Unique Visit",
        "body": "import sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_unique_visit',\n    path_params={'domain': 'amazon.com'},\n    query={'start_date': '2025-07', 'end_date': '2025-12'})"
      },
      {
        "title": "Get Bounce Rate",
        "body": "import sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_bounce_rate',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})"
      },
      {
        "title": "Get Traffic Sources - Desktop",
        "body": "Returns breakdown by channel: Organic Search, Paid Search, Direct, Display Ads, Email, Referrals, Social Media.\n\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_traffic_sources_desktop',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})"
      },
      {
        "title": "Get Traffic Sources - Mobile",
        "body": "import sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_traffic_sources_mobile',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})"
      },
      {
        "title": "Get Total Traffic by Country",
        "body": "Returns traffic share, visits, pages per visit, average time, bounce rate and rank by country.\n\nlimit: Number of countries to return (default: 1, max: 10)\nDate range limit: max 3 months (unlike other APIs)\n\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_total_traffic_by_country',\n    path_params={'domain': 'amazon.com'},\n    query={'start_date': '2025-10', 'end_date': '2025-12', 'limit': '10'})"
      },
      {
        "title": "When to Use",
        "body": "Invoke APIs when users mention:\n\nDomain names: \"google.com\", \"amazon.com\"\nTraffic queries: \"traffic\", \"visits\", \"visitors\"\nRanking queries: \"rank\", \"ranking\", \"how popular\"\nEngagement queries: \"bounce rate\", \"engagement\"\nSource queries: \"traffic sources\", \"marketing channels\"\nGeographic queries: \"countries\", \"geographic\"\nComparison queries: \"compare\", \"vs\""
      },
      {
        "title": "Data Limitations",
        "body": "Historical data: max 12 months\nGeography: worldwide only\nGranularity: monthly only\nLatest data: last complete month"
      },
      {
        "title": "Important: Save Data to Files",
        "body": "API calls may fail mid-execution due to credit depletion. Always save all retrieved data to files immediately to avoid data loss and prevent redundant API calls."
      }
    ],
    "body": "SimilarWeb Analytics\n\nComprehensive website and domain analysis using SimilarWeb traffic data.\n\nCore Capabilities\nTraffic Analysis: Total visits, unique visitors, traffic trends\nEngagement Metrics: Bounce rate, pages per visit, average visit duration\nGlobal Ranking: Website ranking over time\nTraffic Sources: Marketing channels (desktop and mobile)\nGeographic Distribution: Traffic breakdown by country\nAPI Usage\n\nAll APIs use ApiClient from /opt/.manus/.sandbox-runtime. Common parameters:\n\ndomain: Website domain (e.g., \"google.com\")\nstart_date: Start date (YYYY-MM). Max 12 months ago\nend_date: End date (YYYY-MM). Max 12 months ago, default is 1 month ago (most recent complete month)\nmain_domain_only: Exclude subdomains if True (default: False)\n\nDefault time ranges vary by API:\n\nGlobal Rank, Visits Total, Unique Visit, Bounce Rate: default 6 months\nTraffic Sources (Desktop/Mobile), Traffic by Country: default 3 months\nGet Global Rank\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_global_rank', path_params={'domain': 'amazon.com'})\n\nGet Website Visits Total\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_visits_total',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})\n\nGet Unique Visit\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_unique_visit',\n    path_params={'domain': 'amazon.com'},\n    query={'start_date': '2025-07', 'end_date': '2025-12'})\n\nGet Bounce Rate\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_bounce_rate',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})\n\nGet Traffic Sources - Desktop\n\nReturns breakdown by channel: Organic Search, Paid Search, Direct, Display Ads, Email, Referrals, Social Media.\n\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_traffic_sources_desktop',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})\n\nGet Traffic Sources - Mobile\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_traffic_sources_mobile',\n    path_params={'domain': 'amazon.com'},\n    query={'country': 'world', 'granularity': 'monthly', 'start_date': '2025-07', 'end_date': '2025-12'})\n\nGet Total Traffic by Country\n\nReturns traffic share, visits, pages per visit, average time, bounce rate and rank by country.\n\nlimit: Number of countries to return (default: 1, max: 10)\nDate range limit: max 3 months (unlike other APIs)\nimport sys\nsys.path.append('/opt/.manus/.sandbox-runtime')\nfrom data_api import ApiClient\n\nclient = ApiClient()\nresult = client.call_api('SimilarWeb/get_total_traffic_by_country',\n    path_params={'domain': 'amazon.com'},\n    query={'start_date': '2025-10', 'end_date': '2025-12', 'limit': '10'})\n\nWhen to Use\n\nInvoke APIs when users mention:\n\nDomain names: \"google.com\", \"amazon.com\"\nTraffic queries: \"traffic\", \"visits\", \"visitors\"\nRanking queries: \"rank\", \"ranking\", \"how popular\"\nEngagement queries: \"bounce rate\", \"engagement\"\nSource queries: \"traffic sources\", \"marketing channels\"\nGeographic queries: \"countries\", \"geographic\"\nComparison queries: \"compare\", \"vs\"\nData Limitations\nHistorical data: max 12 months\nGeography: worldwide only\nGranularity: monthly only\nLatest data: last complete month\nImportant: Save Data to Files\n\nAPI calls may fail mid-execution due to credit depletion. Always save all retrieved data to files immediately to avoid data loss and prevent redundant API calls."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wells1137/similarweb-analytics",
    "publisherUrl": "https://clawhub.ai/wells1137/similarweb-analytics",
    "owner": "wells1137",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/similarweb-analytics",
    "downloadUrl": "https://openagent3.xyz/downloads/similarweb-analytics",
    "agentUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/similarweb-analytics/agent.md"
  }
}