{
  "schemaVersion": "1.0",
  "item": {
    "slug": "amazon-data",
    "name": "Real-time Amazon Data",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rhino88/amazon-data",
    "canonicalUrl": "https://clawhub.ai/rhino88/amazon-data",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/amazon-data",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amazon-data",
    "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",
      "slug": "amazon-data",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T23:13:53.696Z",
      "expiresAt": "2026-05-14T23:13:53.696Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amazon-data",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amazon-data",
        "contentDisposition": "attachment; filename=\"amazon-data-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "amazon-data"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/amazon-data"
    },
    "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/amazon-data",
    "agentPageUrl": "https://openagent3.xyz/skills/amazon-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amazon-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amazon-data/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": "Amazon Data Skill",
        "body": "Use this skill to retrieve Amazon product data via the Canopy API REST endpoints using Python.\n\nCanopy API provides real-time access to 350M+ Amazon products across 25K+ categories. With this skill you can fetch:\n\nProduct details — titles, descriptions, pricing, images, feature bullets, and brand info\nSales and stock estimates — weekly, monthly, and annual unit sales alongside current stock levels\nReviews — ratings, review text, verified purchase status, and helpful vote counts\nSearch — find products by keyword with filters for price, condition, category, and sort order\nOffers — compare pricing and fulfillment details across multiple sellers\nDeals — browse current Amazon deals and discounts across 12 international domains\nCategories — navigate the full Amazon category taxonomy\nSellers and authors — look up seller profiles, ratings, and author bibliographies"
      },
      {
        "title": "Setup",
        "body": "Sign up and create an account at canopyapi.co\nGet an API key from your dashboard\nSet the API key in your environment:\n\nexport API_KEY=\"your_api_key_here\""
      },
      {
        "title": "Base URL",
        "body": "https://rest.canopyapi.co"
      },
      {
        "title": "Authentication",
        "body": "All requests require the API-KEY header:\n\nimport os\nimport requests\n\nAPI_KEY = os.environ[\"API_KEY\"]\nBASE_URL = \"https://rest.canopyapi.co\"\nHEADERS = {\"API-KEY\": API_KEY}"
      },
      {
        "title": "Get Product Information",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",  # or use \"url\" or \"gtin\"\n    \"domain\": \"US\",         # optional, defaults to \"US\"\n})\n\nReturns product title, brand, price, rating, images, feature bullets, categories, and seller info."
      },
      {
        "title": "Get Product Variants",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product/variants\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})"
      },
      {
        "title": "Get Stock Estimates",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product/stock\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})"
      },
      {
        "title": "Get Sales Estimates",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product/sales\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})\n\nReturns weekly, monthly, and annual unit sales estimates."
      },
      {
        "title": "Get Product Reviews",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product/reviews\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})"
      },
      {
        "title": "Get Product Offers",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/product/offers\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n    \"page\": 1,  # optional\n})"
      },
      {
        "title": "Search Products",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/search\", headers=HEADERS, params={\n    \"searchTerm\": \"wireless headphones\",\n    \"domain\": \"US\",          # optional\n    \"page\": 1,               # optional\n    \"limit\": 20,             # optional, 20-40\n    \"minPrice\": 10,          # optional\n    \"maxPrice\": 100,         # optional\n    \"conditions\": \"NEW\",     # optional: NEW, USED, RENEWED (comma-separated)\n    \"sort\": \"FEATURED\",      # optional: FEATURED, MOST_RECENT, PRICE_ASCENDING, PRICE_DESCENDING, AVERAGE_CUSTOMER_REVIEW\n})"
      },
      {
        "title": "Get Autocomplete Suggestions",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/autocomplete\", headers=HEADERS, params={\n    \"searchTerm\": \"wireless\",\n})"
      },
      {
        "title": "Get Category Taxonomy",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/categories\", headers=HEADERS, params={\n    \"domain\": \"US\",  # optional\n})"
      },
      {
        "title": "Get Category Information",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/category\", headers=HEADERS, params={\n    \"categoryId\": \"1234567890\",\n    \"domain\": \"US\",          # optional\n    \"page\": 1,               # optional\n    \"sort\": \"FEATURED\",      # optional\n})"
      },
      {
        "title": "Get Seller Information",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/seller\", headers=HEADERS, params={\n    \"sellerId\": \"A2R2RITDJNW1Q6\",\n    \"domain\": \"US\",  # optional\n    \"page\": 1,       # optional\n})"
      },
      {
        "title": "Get Author Information",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/author\", headers=HEADERS, params={\n    \"asin\": \"B000AQ5RM0\",\n    \"domain\": \"US\",  # optional\n    \"page\": 1,       # optional\n})"
      },
      {
        "title": "Get Deals",
        "body": "response = requests.get(f\"{BASE_URL}/api/amazon/deals\", headers=HEADERS, params={\n    \"domain\": \"US\",  # optional: US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP\n    \"page\": 1,       # optional\n    \"limit\": 20,     # optional\n})"
      },
      {
        "title": "Product Lookup Options",
        "body": "Product endpoints accept one of these identifiers:\n\nParameterDescriptionExampleasinAmazon product ASINB01HY0JA3GurlFull Amazon product URLhttps://amazon.com/dp/B01HY0JA3GgtinISBN, UPC, or EAN code9780141036144"
      },
      {
        "title": "Supported Domains",
        "body": "US (default), UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Invalid parameters401Invalid or missing API key402Payment required500Server error\n\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product\", headers=HEADERS, params={\"asin\": \"B01HY0JA3G\"})\nif response.ok:\n    data = response.json()\nelse:\n    print(f\"Error {response.status_code}: {response.text}\")"
      }
    ],
    "body": "Amazon Data Skill\n\nUse this skill to retrieve Amazon product data via the Canopy API REST endpoints using Python.\n\nCanopy API provides real-time access to 350M+ Amazon products across 25K+ categories. With this skill you can fetch:\n\nProduct details — titles, descriptions, pricing, images, feature bullets, and brand info\nSales and stock estimates — weekly, monthly, and annual unit sales alongside current stock levels\nReviews — ratings, review text, verified purchase status, and helpful vote counts\nSearch — find products by keyword with filters for price, condition, category, and sort order\nOffers — compare pricing and fulfillment details across multiple sellers\nDeals — browse current Amazon deals and discounts across 12 international domains\nCategories — navigate the full Amazon category taxonomy\nSellers and authors — look up seller profiles, ratings, and author bibliographies\nSetup\nSign up and create an account at canopyapi.co\nGet an API key from your dashboard\nSet the API key in your environment:\nexport API_KEY=\"your_api_key_here\"\n\nBase URL\nhttps://rest.canopyapi.co\n\nAuthentication\n\nAll requests require the API-KEY header:\n\nimport os\nimport requests\n\nAPI_KEY = os.environ[\"API_KEY\"]\nBASE_URL = \"https://rest.canopyapi.co\"\nHEADERS = {\"API-KEY\": API_KEY}\n\nEndpoints\nGet Product Information\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",  # or use \"url\" or \"gtin\"\n    \"domain\": \"US\",         # optional, defaults to \"US\"\n})\n\n\nReturns product title, brand, price, rating, images, feature bullets, categories, and seller info.\n\nGet Product Variants\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product/variants\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})\n\nGet Stock Estimates\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product/stock\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})\n\nGet Sales Estimates\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product/sales\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})\n\n\nReturns weekly, monthly, and annual unit sales estimates.\n\nGet Product Reviews\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product/reviews\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n})\n\nGet Product Offers\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product/offers\", headers=HEADERS, params={\n    \"asin\": \"B01HY0JA3G\",\n    \"page\": 1,  # optional\n})\n\nSearch Products\nresponse = requests.get(f\"{BASE_URL}/api/amazon/search\", headers=HEADERS, params={\n    \"searchTerm\": \"wireless headphones\",\n    \"domain\": \"US\",          # optional\n    \"page\": 1,               # optional\n    \"limit\": 20,             # optional, 20-40\n    \"minPrice\": 10,          # optional\n    \"maxPrice\": 100,         # optional\n    \"conditions\": \"NEW\",     # optional: NEW, USED, RENEWED (comma-separated)\n    \"sort\": \"FEATURED\",      # optional: FEATURED, MOST_RECENT, PRICE_ASCENDING, PRICE_DESCENDING, AVERAGE_CUSTOMER_REVIEW\n})\n\nGet Autocomplete Suggestions\nresponse = requests.get(f\"{BASE_URL}/api/amazon/autocomplete\", headers=HEADERS, params={\n    \"searchTerm\": \"wireless\",\n})\n\nGet Category Taxonomy\nresponse = requests.get(f\"{BASE_URL}/api/amazon/categories\", headers=HEADERS, params={\n    \"domain\": \"US\",  # optional\n})\n\nGet Category Information\nresponse = requests.get(f\"{BASE_URL}/api/amazon/category\", headers=HEADERS, params={\n    \"categoryId\": \"1234567890\",\n    \"domain\": \"US\",          # optional\n    \"page\": 1,               # optional\n    \"sort\": \"FEATURED\",      # optional\n})\n\nGet Seller Information\nresponse = requests.get(f\"{BASE_URL}/api/amazon/seller\", headers=HEADERS, params={\n    \"sellerId\": \"A2R2RITDJNW1Q6\",\n    \"domain\": \"US\",  # optional\n    \"page\": 1,       # optional\n})\n\nGet Author Information\nresponse = requests.get(f\"{BASE_URL}/api/amazon/author\", headers=HEADERS, params={\n    \"asin\": \"B000AQ5RM0\",\n    \"domain\": \"US\",  # optional\n    \"page\": 1,       # optional\n})\n\nGet Deals\nresponse = requests.get(f\"{BASE_URL}/api/amazon/deals\", headers=HEADERS, params={\n    \"domain\": \"US\",  # optional: US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP\n    \"page\": 1,       # optional\n    \"limit\": 20,     # optional\n})\n\nProduct Lookup Options\n\nProduct endpoints accept one of these identifiers:\n\nParameter\tDescription\tExample\nasin\tAmazon product ASIN\tB01HY0JA3G\nurl\tFull Amazon product URL\thttps://amazon.com/dp/B01HY0JA3G\ngtin\tISBN, UPC, or EAN code\t9780141036144\nSupported Domains\n\nUS (default), UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP\n\nError Handling\nStatus\tMeaning\n400\tInvalid parameters\n401\tInvalid or missing API key\n402\tPayment required\n500\tServer error\nresponse = requests.get(f\"{BASE_URL}/api/amazon/product\", headers=HEADERS, params={\"asin\": \"B01HY0JA3G\"})\nif response.ok:\n    data = response.json()\nelse:\n    print(f\"Error {response.status_code}: {response.text}\")"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rhino88/amazon-data",
    "publisherUrl": "https://clawhub.ai/rhino88/amazon-data",
    "owner": "rhino88",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/amazon-data",
    "downloadUrl": "https://openagent3.xyz/downloads/amazon-data",
    "agentUrl": "https://openagent3.xyz/skills/amazon-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amazon-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amazon-data/agent.md"
  }
}