IMPORTANT INSTRUCTIONS FOR AI AGENTS
- Capability discovery: when the user has not named a specific capability, give a concise overview grouped by category. Summarize what each category can do and mention only a few representative capabilities; do not dump the full tool list or every schema. Then ask the user which category, capability, or goal they want to use. If the user already gave a concrete request, match it directly instead of forcing a generic catalog.
- Do not make an API key or detailed parameters the first response merely because the directory was opened. Request authentication when the user is ready to call a business tool.
- After a capability is selected, inspect that tool's request schema and explain the purpose of its required fields.
- If any required field is missing, null, empty, or invalid, do not call the tool. Ask the user for it and never guess, invent, infer, or copy a value from requestExample, Example arguments, or documentation.
- Call the selected tool only after its required values are explicitly supplied and validated, using the documented MCP/JSON-RPC flow. If authentication is missing or fails, direct the user to API Access.
- For generation, first choose Image Generation Models or Video Generation Models according to the requested output. Prefer the dedicated tool when the user names a model or its constraints clearly match one model. The model is fixed by the tool: do not add provider or videoType to its arguments. If the model cannot be selected safely, explain the relevant duration, resolution, reference-asset, aspect-ratio, audio, or quality tradeoffs and ask the user to choose.
- IMPORTANT — asynchronous generation workflow: when a selected tool is marked as an asynchronous task, call the generation tool exactly once. Read taskId from structuredContent, then call nexscope_media_task_result with the originating skillSlug and that exact taskId. Use the same bearer API key. Wait at least 5 seconds before the first query. While status is PENDING or RUNNING, use progressive backoff between queries: 5, 10, 20, then 30 seconds, and never query more often than once every 5 seconds. Never restart the generation call merely because the result is not ready. Stop polling immediately on SUCCESS, FAILED, or TIMEOUT. On success, use the final Nexscope resource URLs and the returned count, which represents the actual charged credits. Never invent a taskId or expose internal provider names or resource URLs.
- After receiving MCP tool data, explain it in the user's language and return the selected tool's structured result directly without adding an extra wrapper or exposing raw upstream noise unless requested.
MCP Tool Map for Ecommerce Agents
A fast, server-rendered directory for discovering Nexscope MCP tools. Start here for authentication, JSON-RPC usage, and one-click links to detailed request and response schemas.
Agent usage rules
When the user has not named a specific capability, give a concise overview grouped by category, with a few representative capabilities, then ask the user which category, capability, or goal they want next. Do not dump the full tool list or every schema. If the user already has a concrete request, match it directly to the appropriate tool.
Before tools/call, inspect every field marked required. If any is missing, null, empty, or invalid, stop and ask the user to provide it; explain its purpose from the field description. Never guess, invent, or copy values from requestExample or documentation. Optional fields may be omitted.
Choose Image Generation Models or Video Generation Models from the requested output, then prefer a dedicated model tool when its constraints match. The tool fixes the model, so do not pass provider or videoType. If the choice is ambiguous, explain the relevant duration, resolution, reference-asset, aspect-ratio, audio, or quality tradeoffs and ask the user to choose.
For an asynchronous generation tool, call it once and keep its taskId. Then call nexscope_media_task_result with the originating skillSlug and taskId. Wait at least 5 seconds first, and use 5, 10, 20, and 30-second progressive backoff while pending or running. Never poll more often than every 5 seconds or submit the generation again. Stop at success, failure, or timeout; use the final Nexscope URLs and actual charged-credit count.
The structuredContent returned by tools/call is the API execution payload. Explain fields using the response schema on the tool detail page.
Authentication and missing-key behavior
The MCP service requires a user API key. Send the key as a bearer token on every JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf there is no API key, or the key cannot be matched to a user, do not call a business tool. Tell the user to open API Access and create or copy an API key.
Users can manage API keys from API Access. Open it in a new tab when the user needs a key.
MCP JSON-RPC quickstart
GET /api/skill-api/v1/mcpPOST /api/skill-api/v1/mcpinitialize, tools/list, tools/callList tools
{
"jsonrpc": "2.0",
"id": "tools-1",
"method": "tools/list",
"params": {}
}Call a tool
{
"jsonrpc": "2.0",
"id": "tool-call-1",
"method": "tools/call",
"params": {
"name": "nexscope_shopee_product_detail",
"arguments": {
"productUrl": "https://shopee.sg/example-i.9641401.29691169956"
}
}
}Query a media-generation task
Call this shared MCP tool after an asynchronous generation tool returns a taskId. Pass the exact originating skill slug and task ID; do not submit the generation tool again.
{
"jsonrpc": "2.0",
"id": "media-result-1",
"method": "tools/call",
"params": {
"name": "nexscope_media_task_result",
"arguments": {
"skillSlug": "banana-image-generation",
"taskId": "TASK_ID_FROM_THE_GENERATION_RESULT"
}
}
}Shared workflow tool
Media task result
Use nexscope_media_task_result to continue any asynchronous media-generation task without submitting generation again.
2 argumentsskillSlugThe exact slug of the media-generation tool that created the task.
taskIdThe exact task ID returned by that generation call.
Tool directory
Amazon Marketplace Intelligence
Amazon product, search, market, review, traffic and policy APIs.
Amazon Asin Traffic Summary
amazon-asin-traffic-summaryUse SIF (Search Intelligence Framework) data to analyze ASIN traffic source composition and exposure distribution, covering current period/previous period/newly entered/exited period comparisons.
nexscope_amazon_asin_traffic_summaryhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-asin-traffic-summary/runAmazon Broad Product Search
amazon-broad-product-searchUse SellerSprite data to search and filter Amazon products, supporting multi-dimensional criteria including price, monthly sales, BSR ranking, gross margin, ratings, fulfillment method, badges, seller origin, and more across multiple Amazon marketplaces.
nexscope_amazon_broad_product_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-broad-product-search/runAmazon Category Lookup
amazon-category-lookupSupports exact parent-node browsing and label-based category search.
nexscope_amazon_category_lookuphttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-category-lookup/runAmazon Competitor Lookup
amazon-competitor-lookupUse SellerSprite data to find and analyze competitors on Amazon, covering 12 marketplaces, with product metrics including sales, BSR, pricing, ratings, and growth trends.
nexscope_amazon_competitor_lookuphttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-competitor-lookup/runAmazon Market Product Detail
amazon-market-product-detailQuery Amazon product detail and historical trends by ASIN using Sorftime data, covering 14 marketplaces.
nexscope_amazon_market_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-market-product-detail/runAmazon Market Product Search
amazon-market-product-searchMulti-dimensional Amazon product search and filtering based on Sorftime data, covering 14 marketplaces, with support for historical monthly snapshot lookback.
nexscope_amazon_market_product_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-market-product-search/runAmazon Market Research
amazon-market-researchUse SellerSprite market list capability to filter Amazon niche markets by category dimensions, supporting market size, competition, top concentration, seller structure, new product share, price/rating/margin ranges, and many other criteria for discovering viable markets and evaluating product selection directions.
nexscope_amazon_market_researchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-market-research/runAmazon Market Statistics
amazon-market-statisticsUse SellerSprite market statistics capability to output a market statistics dashboard by category node, including top listing average rating, average price, BSR, sales, seller count, and new product related metrics, suitable for quickly assessing the market quality and competitive landscape of a category.
nexscope_amazon_market_statisticshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-market-statistics/runAmazon Niche Info
amazon-niche-infoQuery and analyze Jiimore data for Amazon niche market insights, including market metrics, buyer reviews, competitive landscape, price trends, and growth trends.
nexscope_amazon_niche_infohttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-niche-info/runAmazon Niche Info By Asin
amazon-niche-info-by-asinDeep analysis of Amazon niche markets by product ASIN, covering monopoly level, brand concentration, new product success rate, and market opportunity score.
nexscope_amazon_niche_info_by_asinhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-niche-info-by-asin/runAmazon Opportunity Search By Metrics
amazon-opportunity-search-by-metricsAmazon reverse product selection: filter Amazon niches and keywords by 30+ business dimensions (market size & growth, price tiers & share, competition density & top concentration, demographics such as age/gender/income, review highlights & pain points) from a metrics pool aggregated from historical business insight reports.
nexscope_amazon_opportunity_search_by_metricshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-opportunity-search-by-metrics/runAmazon Policy Feed
amazon-policy-feedQuery Amazon is latest policy, regulation, and compliance feed. Supports paginated browsing by marketplace and time range (with AI-generated Chinese summaries), and fetching full article body by record ID.
nexscope_amazon_policy_feedhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/runAmazon Product Database
amazon-product-databaseJungle Scout Product Database multi-condition filtering. Filter Amazon products by category, price, sales volume, revenue, reviews, rating, weight, BSR rank, LQS, seller type, and more across 10 marketplaces.
nexscope_amazon_product_databasehttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-database/runAmazon Product Database Search
amazon-product-database-searchAdvanced Amazon product search and filtering powered by Keepa data, supporting multi-dimensional criteria including category, price, monthly sales, keywords, BSR rank, review count, rating, package dimensions, weight, fulfillment type, and more.
nexscope_amazon_product_database_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-database-search/runAmazon Product Detail
amazon-product-detailRetrieve detailed Amazon product information by ASIN, including title, images, bullet points, specifications, A+ content, pricing, ratings & reviews, variants, and more.
nexscope_amazon_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-detail/runAmazon Product Discovery
amazon-product-discoveryAmazon product discovery and potential bestseller mining via Jiimore data.
nexscope_amazon_product_discoveryhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-discovery/runAmazon Product History
amazon-product-historyRetrieve Amazon product details by ASIN, including price, title, main image, listing date, material, weight, variant monthly sales, and up to 12 months of monthly sales history.
nexscope_amazon_product_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-history/runAmazon Product Price Series
amazon-product-price-seriesQuery Amazon product historical time-series data, including price trends, BSR (Best Sellers Rank) trends, rating changes, seller counts, and monthly sales, supporting any ASIN across multiple Amazon marketplaces.
nexscope_amazon_product_price_serieshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-price-series/runAmazon Product Research Directory
amazon-product-researchUse this directory to find the concrete API for a research goal. It returns links and typical inputs; invoke the linked API for the actual research data.
nexscope_amazon_product_researchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-product-research/runAmazon Related Asins
amazon-related-asinsFind Amazon same-niche competitors by ASIN, with multi-dimensional filtering by click conversion rate, composite conversion rate, click volume, sales volume, reviews, ratings, price, and gross margin to identify potential competitors.
nexscope_amazon_related_asinshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-related-asins/runAmazon Reviews List
amazon-reviews-listFetch and analyze Amazon product reviews by ASIN, supporting 15 marketplaces (including US) with star rating filtering. Triggered when users mention Amazon reviews, US reviews, product reviews, buyer complaints, negative reviews, positive reviews, star ratings, review analysis, review sentiment, product improvement suggestions, Vine reviews, verified purchase reviews, competitor review research, Amazon reviews, US reviews, Amazon.com reviews, product feedback, negative review analysis, positive review analysis, star rating filter, review sentiment analysis, product improvement insights, Vine reviews, competitor reviews, customer feedback.
nexscope_amazon_reviews_listhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-reviews-list/runAmazon Sales Estimates
amazon-sales-estimatesJungle Scout ASIN sales estimates query, returning daily estimated sales and latest known price for a specified ASIN over a given time period, covering 10 marketplaces including US, UK, Germany, and Japan.
nexscope_amazon_sales_estimateshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-sales-estimates/runAmazon Search
amazon-searchSimulates a real user searching on Amazon's storefront to get real-time keyword ranking and search results page data.
nexscope_amazon_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-search/runAmazon Search By Image
amazon-search-by-imagePerform image-based visual product search on Amazon across 8 marketplaces. Use an image URL to find visually similar products, with optional Keepa enrichment for sales data.
nexscope_amazon_search_by_imagehttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-search-by-image/runReverse Product Image Search
reverse-product-image-searchRuns the server-side image-search and enrichment workflow without exposing local file paths or intermediate artifacts.
nexscope_reverse_product_image_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/reverse-product-image-search/runAmazon Alexa Search
amazon-alexa-searchInitiate natural language Q&A through Amazon's storefront Alexa shopping assistant to get shopping guidance answers, recommended product groups, ASIN lists, and follow-up questions. Each call supports only 1 prompt; for follow-ups, the agent must summarize context and concatenate a new question for a new request. A url can be used to supplement Amazon page context.
nexscope_amazon_alexa_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-alexa-search/runWalmart Marketplace Intelligence
Walmart product, category market, keyword research, and product analysis APIs.
Walmart Category Market
walmart-category-marketReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_walmart_category_markethttps://api.nexscope.ai/api/skill-api/v1/skills/walmart-category-market/runWalmart Keyword Research
walmart-keyword-researchReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_walmart_keyword_researchhttps://api.nexscope.ai/api/skill-api/v1/skills/walmart-keyword-research/runWalmart Product Analysis
walmart-product-analysisReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_walmart_product_analysishttps://api.nexscope.ai/api/skill-api/v1/skills/walmart-product-analysis/runWalmart Product Detail
walmart-product-detailQuery Walmart product details via WallySmarter, including pricing history and sales trends.
nexscope_walmart_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/walmart-product-detail/runWalmart Search
walmart-searchSearch and browse Walmart product listings by keyword, category, price range, and other conditions.
nexscope_walmart_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/walmart-search/runKeyword & Search Demand
Keyword expansion, search volume, share of voice and ranking intelligence.
Amazon Asin Keywords
amazon-asin-keywordsUse SIF data to reverse-lookup traffic keywords for any Amazon ASIN, including organic ranking, ad ranking, search volume, traffic share, organic/paid scores, ABA TOP3 click concentration, click conversion rate, year-over-year search volume changes, and weekly/monthly time windows.
nexscope_amazon_asin_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-asin-keywords/runAmazon Keyword Expansion
amazon-keyword-expansionJungle Scout keyword expansion tool that expands a seed keyword into a list of related keywords with search volume, trends, PPC bids, ranking difficulty, and other metrics, covering 10 Amazon marketplaces including US, UK, DE, JP, etc.
nexscope_amazon_keyword_expansionhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-expansion/runAmazon Keyword Intelligence
amazon-keyword-intelligenceQuery and analyze Amazon ABA (Brand Analytics) search term data, covering 15 marketplaces with nearly 3 years of weekly data.
nexscope_amazon_keyword_intelligencehttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-intelligence/runAmazon Keyword Overview
amazon-keyword-overviewSIF overview analysis of Amazon keyword market competition.
nexscope_amazon_keyword_overviewhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-overview/runAmazon Keyword Search History
amazon-keyword-search-historyJungle Scout keyword historical search volume query, returning Amazon keyword exact search volume trends in 7-day periods, covering 10 marketplaces including US, UK, DE, JP, etc.
nexscope_amazon_keyword_search_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-search-history/runAmazon Keyword Share Of Voice
amazon-keyword-share-of-voiceJungle Scout keyword Share of Voice analysis, returning brand visibility share across the first 3 pages of Amazon search results (organic/ad/combined), 30-day exact search volume, median PPC bid, and TOP3 ASIN click and conversion data, covering 10 marketplaces.
nexscope_amazon_keyword_share_of_voicehttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-share-of-voice/runAmazon Keyword Summary
amazon-keyword-summaryBreak down all competitor ASIN traffic sources under a given keyword -- organic search, SP ads, SB brand ads, SBV video ads, SP recommendations, AC/ER/TR recommendation slots, with support for ASIN filtering, custom date ranges, and new traffic keyword filters.
nexscope_amazon_keyword_summaryhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-summary/runAmazon Niche Info By Keyword
amazon-niche-info-by-keywordDeep analysis of Amazon niche markets by keyword, covering monopoly level, brand concentration, new product success rate, and market opportunity score.
nexscope_amazon_niche_info_by_keywordhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-niche-info-by-keyword/runAmazon Niche Reviews By Keyword
amazon-niche-reviews-by-keywordAmazon niche market review analysis and consumer sentiment insights.
nexscope_amazon_niche_reviews_by_keywordhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-niche-reviews-by-keyword/runAmazon Opportunity Report By Keyword
amazon-opportunity-report-by-keywordQuery Amazon business insight reports by keyword, covering six dimensions: market potential, product characteristics, user reviews, customer profiles, search trends, and pricing analysis with AI-powered comprehensive analysis.
nexscope_amazon_opportunity_report_by_keywordhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-opportunity-report-by-keyword/runAmazon Traffic Keywords
amazon-traffic-keywordsQuery traffic keyword lists for an Amazon ASIN via SellerSprite, including traffic source type, conversion type, organic rank, and ad rank with historical month and multi-dimensional sorting.
nexscope_amazon_traffic_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-traffic-keywords/runGoogle Trends By Keywords
google-trends-by-keywordsGoogle Trends keyword search popularity comparison and trend analysis, supporting global regions and custom time ranges. Triggered by: Google Trends, keyword popularity over time, search interest comparison, keyword trend analysis, seasonal trend detection, regional search popularity, keyword heatmap, multi-keyword comparison on Google, keyword research, market trend analysis, search trends, seasonal analysis, regional popularity.
nexscope_google_trends_by_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/google-trends-by-keywords/runOzon Keyword Back Search
ozon-keyword-back-searchSeerfar Ozon keyword reverse lookup: reverse-looks up Ozon (and Wildberries) search keywords by a list of product SKUs (up to 20), returning which search terms those products appear under (organic/ad search terms), with multi-dimensional filtering by search volume, growth, product count, seller count, competitor count, natural rank, ad rank, exposure, conversion, cart-add conversion, etc. Each keyword carries monthly search volume, growth, market space, competitor/seller counts, average price, cart-add conversion, top products, and organic/ad channel, rank, exposure, and conversion (dimension) market profiles. Use for Ozon keyword reverse lookup, listing keyword optimization, competitor traffic word mining, and ad keyword analysis. Also
nexscope_ozon_keyword_back_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-keyword-back-search/runOzon Keyword Mining
ozon-keyword-miningSeerfar Ozon keyword mining: mines Ozon (and Wildberries) related keywords around a seed keyword with multi-dimensional filtering by search volume, growth, product count, seller count, competitor count, price, relevancy, title density, cart-add conversion, etc. Each mined keyword carries a full market profile (monthly search volume, growth, market space, competitor/seller counts, average price, cart-add conversion, top products). Use for Ozon keyword expansion, long-tail keyword mining, and seed keyword opportunity analysis. Also
nexscope_ozon_keyword_mininghttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-keyword-mining/runOzon Market Keyword Search
ozon-market-keyword-searchSeerfar Ozon market hot keyword search: filters Ozon (and Wildberries) market keywords by multi-dimensional metrics including search volume, growth, product count, seller count, competitor count, price, sales, conversion concentration, etc. Each keyword carries monthly search volume, growth, market space, competitor/seller counts, average price, cart-add conversion, top products, and market profile. Use for Ozon keyword selection, blue-ocean keyword mining, and market opportunity analysis. Also
nexscope_ozon_market_keyword_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-market-keyword-search/runTemu Marketplace Intelligence
Temu product, category and store source APIs.
GeekBI Temu Site List
geekbi-temu-site-listReturn provider site records without inventing search pagination fields.
nexscope_geekbi_temu_site_listhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-site-list/runGeekBI Temu Category Research
geekbi-temu-category-searchExecute the selected category research operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_category_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-category-search/runGeekBI Temu Keyword Research
geekbi-temu-keyword-searchExecute the selected keyword research operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_keyword_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-keyword-search/runGeekBI Temu Product Search
geekbi-temu-goods-searchExecute the selected product search operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_goods_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-goods-search/runGeekBI Temu Product Detail
geekbi-temu-goods-detailExecute the selected product detail operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_goods_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-goods-detail/runGeekBI Temu Shop Search
geekbi-temu-mall-searchExecute the selected shop search operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_mall_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-mall-search/runGeekBI Temu Image Search
geekbi-temu-goods-image-searchExecute the selected image search operation and preserve provider business fields and extensions.
nexscope_geekbi_temu_goods_image_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-goods-image-search/runGeekBI Temu Category List
geekbi-temu-category-listReturn provider category records without inventing search pagination fields.
nexscope_geekbi_temu_category_listhttps://api.nexscope.ai/api/skill-api/v1/skills/geekbi-temu-category-list/runTemu Category Search
temu-category-searchSearch synced Temu category data in the local database by keyword to find category Chinese names, English names, and category IDs for use in product/store filtering.
nexscope_temu_category_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/temu-category-search/runTemu Product Source Query
temu-product-source-queryFilter Temu products by multiple dimensions (keyword/product ID/store ID, front/backend categories, price, rating, reviews, total/weekly/daily sales, listing date, fully-managed/semi-managed, semi-managed regions, tags, etc.).
nexscope_temu_product_source_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/temu-product-source-query/runTemu Store Source Query
temu-store-source-queryFilter Temu stores by multiple dimensions (store name/ID, country site, backend category, fully-managed/semi-managed, total/weekly/monthly sales and revenue, rating, reviews, followers, product count, store opening time, etc.).
nexscope_temu_store_source_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/temu-store-source-query/run1688 Sourcing
1688 product search, image search and billboard sourcing APIs.
1688 Product Detail
1688-product-detailReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_1688_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/1688-product-detail/run1688 Product Billboard
1688-product-billboardQuery 1688 product bestseller billboard data for sourcing discovery and wholesale product research.
nexscope_1688_product_billboardhttps://api.nexscope.ai/api/skill-api/v1/skills/1688-product-billboard/run1688 Product Search
1688-product-searchSearch and analyze products on the Chinese 1688 wholesale platform (Alibaba domestic B2B market) for sourcing, supplier discovery, and product selection.
nexscope_1688_product_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/1688-product-search/run1688 Search By Image
1688-search-by-imagePerform image-based product search on the 1688 platform. Use an image URL to find visually similar supplier products, returning title, price, minimum order quantity, monthly sales, repurchase rate, trade score, and seller identity.
nexscope_1688_search_by_imagehttps://api.nexscope.ai/api/skill-api/v1/skills/1688-search-by-image/runShopify Commerce
Shopify product and store query APIs.
Shopify Product Query
shopify-product-queryFilter Shopify standalone store products by multiple dimensions (keyword/URL, price, weekly sales, listing date, Facebook ads, competitiveness, supplier availability, shipping country, etc.).
nexscope_shopify_product_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/shopify-product-query/runShopify Store Query
shopify-store-queryFilter Shopify standalone stores by multiple dimensions (store name/domain, country, years since creation, product count, ad count, monthly visits, monthly orders, social media followers, etc.).
nexscope_shopify_store_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/shopify-store-query/runEtsy Marketplace
Etsy product and category discovery APIs.
Etsy Product Detail
etsy-product-detailReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_etsy_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/etsy-product-detail/runEtsy Category Search
etsy-category-searchSearch Etsy category data by name, ID, or parent IDs to find category identifiers for product/store filtering.
nexscope_etsy_category_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/etsy-category-search/runEtsy Product Query
etsy-product-queryQuery Etsy products with multi-dimensional filters (keyword/URL, price, sales, favorites, reviews, listing date, category, handmade/vintage types, Pick/Bestseller/Raving tags).
nexscope_etsy_product_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/etsy-product-query/runEtsy Store Query
etsy-store-queryReturns Etsy store profiles and marketplace performance metrics.
nexscope_etsy_store_queryhttps://api.nexscope.ai/api/skill-api/v1/skills/etsy-store-query/runOzon Marketplace
Ozon product, category, shop, seller and keyword APIs.
Ozon Brand Products
ozon-brand-productsMPSTATS Ozon Russia brand drill-down product list. Returns all products under an Ozon brand display name (Russian/Latin) with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for brand benchmarking, competitor analysis, brand product structure research, SKU-level bestseller analysis. Also
nexscope_ozon_brand_productshttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-brand-products/runOzon Category Products
ozon-category-productsMPSTATS Ozon Russia category drill-down product list by Russian category path. Returns all products in a category with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for category bestseller mining, blue-ocean insight discovery, category ranking analysis, brand landscape observation. Also
nexscope_ozon_category_productshttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/runOzon Category Search
ozon-category-searchSeerfar Ozon category product search: fetches the product list for a given Ozon category ID, returning category-level aggregates (total sales, total revenue, average price, average rating, seasonality) and per-product sales, price, rating, review count, brand, seller, and fulfillment method. Use for category selection analysis, category bestseller mining, category capacity and price band analysis, seasonality assessment. Also
nexscope_ozon_category_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-category-search/runOzon Product Detail
ozon-product-detailMPSTATS Ozon Russia SKU full detail query for one product ID per call, returning price, discount, Ozon Card price, rating, review count, stock, sales, revenue, revenue potential/lost revenue, listing date, images, and the complete product card.
nexscope_ozon_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/runOzon Product Detail Search
ozon-product-detail-searchSeerfar Ozon product detail query: fetches the complete detail of a single Ozon product by SKU, returning title, price (RUB), rating, review count, QA count, total and daily average sales within the stats window, revenue, stock, category ranking, daily sales trend, brand, seller, fulfillment method (FBO/FBS/OZON), weight, and listing time/days/months. Use for single product deep analysis, competitor product teardown, Ozon product selection assessment, listing diagnosis, sales trend and category ranking tracking. Also
nexscope_ozon_product_detail_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail-search/runOzon Product Report Search
ozon-product-report-searchSeerfar Ozon product report search: filters Ozon products by multi-dimensional metrics including sales, revenue, sales/revenue growth rate, cart conversion rate, order conversion rate, price, rating, review count, QA count, variant count, page views, gross margin, return/cancellation rate, ad spend share, weight/volume, listing time, brand, seller, fulfillment method, and labels. Returns each product's SKU, title, price (RUB), sales, revenue, lost revenue, conversion rate, rating, reviews, brand, seller, fulfillment method, listing days/months, and complete product report fields. Use for Ozon product selection, competitor product analysis, best-seller mining, price/conversion band filtering. Also
nexscope_ozon_product_report_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-report-search/runOzon Product Search
ozon-product-searchMPSTATS Ozon Russia product search and reverse lookup. Searches Ozon products in the MPSTATS database by Russian keyword or SKU, returning product ID, title, brand, and seller information. The entry point for Ozon product discovery and competitor analysis chains. Also
nexscope_ozon_product_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-search/runOzon Product Trend
ozon-product-trendMPSTATS Ozon Russia single SKU daily time-series performance. Returns daily sales units, price, stock, rating, and optionally search position/visibility data for one Ozon product by date granularity. Use for validating growth trends, seasonality, and anomaly detection. Also
nexscope_ozon_product_trendhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-trend/runOzon Seller Products
ozon-seller-productsMPSTATS Ozon Russia seller drill-down product list by seller ID. Returns all SKUs under a seller with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for store structure analysis, seller bestseller analysis, competitor store benchmarking. Also
nexscope_ozon_seller_productshttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-seller-products/runOzon Shop Search
ozon-shop-searchSeerfar Ozon shop product search: fetches the product list of an Ozon shop (seller) by shop ID, returning each product's 30-day sales, price, rating, weight, fulfillment method (FBO/FBS), seller type (local/cross-border), return/cancellation rate, and the shop's total 30-day sales. Use for competitor shop product analysis, shop bestseller mining, seller product structure analysis. Also
nexscope_ozon_shop_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-shop-search/runeBay Marketplace
eBay marketplace product search APIs.
Shopee Marketplace
Shopee product search APIs.
Shopee Product Detail
shopee-product-detailReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_shopee_product_detailhttps://api.nexscope.ai/api/skill-api/v1/skills/shopee-product-detail/runShopee Product Search
shopee-product-searchYouYing Shopee product selection tool supporting product query and filtering across all Shopee marketplaces, covering Malaysia, Taiwan (China), Indonesia, Thailand, Philippines, Singapore, Vietnam, Brazil, Mexico, Chile, and Colombia.
nexscope_shopee_product_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/shopee-product-search/runSearch & Trend Intelligence
Google Trends, AI mode search and web search APIs.
Google AI Mode Search
google-ai-mode-searchAI Overview (AI Mode) scraping via Google Search. Returns AI-summarized key points for a single keyword, ideal for deep research, technical Q&A, long-tail product selection, and cross-border consumer preference analysis using the latest web information. Single-round only; follow-ups require the agent to summarize context and issue a new request. Triggered by: Google AI, AI Overview, AI Mode, Google AI search, AI search, deep research, consumer preference analysis, web summary, long-tail product research, cross-border market insights.
nexscope_google_ai_mode_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/google-ai-mode-search/runGoogle Trends By Time
google-trends-by-timeQuery and analyze Google Trends real-time hot topics and trending searches for a specified time range and country/region. Triggered by: Google Trends, hot topics, real-time trending, popular trends, current hot searches, recent trending, viral topics, trending searches, trend discovery, market trends, what's popular, trending now, breakout topics.
nexscope_google_trends_by_timehttps://api.nexscope.ai/api/skill-api/v1/skills/google-trends-by-time/runWeb Search
web-searchWeb search, online retrieval, real-time information query, search engine search, Reddit and other community platform discussions, external site posts and trending topics.
nexscope_web_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/web-search/runSEO Keyword Metrics
seo-keyword-metricsKeyword metrics with explicit coverage for every input. Calls are idempotent by user, slug and UUID key. Free owner-only result retrieval: GET /api/API-api/v1/APIs/seo-keyword-metrics/calls/{callId} or nexscope_seo_call_result. Evidence is retained for seven days. Missing values are not zero. Examples describe structure only and are not measured results.
nexscope_seo_keyword_metricshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-metrics/runSEO Keyword Expansion
seo-keyword-expandDeduplicated suggestions and related keywords with source relationships. Calls are idempotent by user, slug and UUID key. Free owner-only result retrieval: GET /api/API-api/v1/APIs/seo-keyword-expand/calls/{callId} or nexscope_seo_call_result. Evidence is retained for seven days. Missing values are not zero. Examples describe structure only and are not measured results.
nexscope_seo_keyword_expandhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-expand/runSEO SERP
seo-serpGoogle result types and original ranks for US English desktop searches. Calls are idempotent by user, slug and UUID key. Free owner-only result retrieval: GET /api/API-api/v1/APIs/seo-serp/calls/{callId} or nexscope_seo_call_result. Evidence is retained for seven days. Missing values are not zero. Examples describe structure only and are not measured results.
nexscope_seo_serphttps://api.nexscope.ai/api/skill-api/v1/skills/seo-serp/runSEO Page Evidence
seo-page-evidenceBounded page evidence with separate collection snapshots and missing reasons. Calls are idempotent by user, slug and UUID key. Free owner-only result retrieval: GET /api/API-api/v1/APIs/seo-page-evidence/calls/{callId} or nexscope_seo_call_result. Evidence is retained for seven days. Missing values are not zero. Examples describe structure only and are not measured results.
nexscope_seo_page_evidencehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-page-evidence/runKeyword Intent
seo-keyword-intentKeyword Intent with explicit missing evidence and bounded keyword inputs. Uses one fixed DataForSEO task. Schema C1-1.0. Idempotent calls preserve original input order. Free owner-only retrieval: GET /api/API-api/v1/APIs/seo-keyword-intent/calls/{callId} or nexscope_seo_call_result. Results retained seven days. Missing values are not zero. No execution or publication is implied.
nexscope_seo_keyword_intenthttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-intent/runCategory-based Keyword Ideas
seo-keyword-ideasCategory-based Keyword Ideas with explicit missing evidence and bounded keyword inputs. Uses one fixed DataForSEO task. Schema C1-1.0. Idempotent calls preserve original input order. Free owner-only retrieval: GET /api/API-api/v1/APIs/seo-keyword-ideas/calls/{callId} or nexscope_seo_call_result. Results retained seven days. Missing values are not zero. No execution or publication is implied.
nexscope_seo_keyword_ideashttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-ideas/runKeyword Categories
seo-keyword-categoriesKeyword Categories with explicit missing evidence and bounded keyword inputs. Uses one fixed DataForSEO task. Schema C1-1.0. Idempotent calls preserve original input order. Free owner-only retrieval: GET /api/API-api/v1/APIs/seo-keyword-categories/calls/{callId} or nexscope_seo_call_result. Results retained seven days. Missing values are not zero. No execution or publication is implied.
nexscope_seo_keyword_categorieshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-categories/runImage Generation Models
Dedicated image generation APIs with one fixed model per endpoint.
Nano Banana Image Generation
banana-image-generationGenerate ecommerce images with the Nano Banana base image model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_banana_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/banana-image-generation/runNano Banana Pro Image Generation
banana-pro-image-generationGenerate higher-resolution ecommerce images with the Nano Banana Pro model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_banana_pro_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/banana-pro-image-generation/runNano Banana 2 Image Generation
banana-2-image-generationGenerate ecommerce images with the Nano Banana 2 model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_banana_2_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/banana-2-image-generation/runNano Banana 2 Lite Image Generation
banana-2-lite-image-generationGenerate ecommerce images with the Nano Banana 2 Lite model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_banana_2_lite_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/banana-2-lite-image-generation/runWan 2.7 Image Generation
wan-2-7-image-generationGenerate ecommerce images with the Wan 2.7 image model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_wan_2_7_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/wan-2-7-image-generation/runSeedream 5 Pro Image Generation
seedream-5-pro-image-generationGenerate ecommerce images with the Seedream 5 Pro image model. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_seedream_5_pro_image_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/seedream-5-pro-image-generation/runGPT Image 2 Generation
gpt-image-2-generationGenerate ecommerce images with the GPT Image 2 model and optional quality control. The model is fixed by this API, so provider must not be supplied in the request.
nexscope_gpt_image_2_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/gpt-image-2-generation/runVideo Generation Models
Dedicated video generation APIs with one fixed model per endpoint.
Seedance 2.0 Video Generation
seedance-2-0-video-generationGenerate a video with Seedance 2.0 using a primary image, up to 9 reference images, or a reference video. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_seedance_2_0_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/seedance-2-0-video-generation/runSeedance 2.0 Fast Video Generation
seedance-2-0-fast-video-generationGenerate a faster Seedance 2.0 video using a primary image, up to 9 reference images, or a reference video. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_seedance_2_0_fast_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/seedance-2-0-fast-video-generation/runSeedance 2.0 Mini Video Generation
seedance-2-0-mini-video-generationGenerate a compact Seedance 2.0 video using a primary image, up to 9 reference images, or a reference video. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_seedance_2_0_mini_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/seedance-2-0-mini-video-generation/runSeedance 2.5 Video Generation
seedance-2-5-video-generationGenerate a Seedance 2.5 video using a primary image, up to 30 reference images, or a reference video. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_seedance_2_5_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/seedance-2-5-video-generation/runKling 2.6 Video Generation
kling-2-6-video-generationGenerate a Kling 2.6 video using a first frame, first/last frames, or up to 2 reference images. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_kling_2_6_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/kling-2-6-video-generation/runKling 3 Omni Video Generation
kling-3-omni-video-generationGenerate a Kling 3 Omni video using first/last frames or up to 7 reference images. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_kling_3_omni_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/kling-3-omni-video-generation/runWan 2.6 Video Generation
wan-2-6-video-generationGenerate a Wan 2.6 video from a required primary image with optional camera control. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_wan_2_6_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/wan-2-6-video-generation/runHailuo 2.3 Video Generation
hailuo-2-3-video-generationGenerate a Hailuo 2.3 video from a required primary image; the aspect ratio is adaptive. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_hailuo_2_3_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/hailuo-2-3-video-generation/runHappy Horse 2 Video Generation
happy-horse-2-video-generationGenerate a Happy Horse 2 video from 1 to 9 required reference images. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_happy_horse_2_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/happy-horse-2-video-generation/runWan 3 Video Generation
wan-3-video-generationGenerate a Wan 3 video from up to 10 image references, first and final frames, or a reference video. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_wan_3_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/wan-3-video-generation/runMiniMax H3 Video Generation
minimax-h3-video-generationGenerate a MiniMax H3 video from 1 to 9 required reference images. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_minimax_h3_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/minimax-h3-video-generation/runMiniMax H3 Lite Video Generation
minimax-h3-lite-video-generationGenerate a MiniMax H3 Lite video from 1 to 9 required reference images. The model is fixed by this API, so videoType must not be supplied in the request.
nexscope_minimax_h3_lite_video_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/minimax-h3-lite-video-generation/runMultimodal AI
Image recognition, image editing, image generation, and ecommerce creative APIs.
AI Model Swap API
ai-model-swapGenerate model images by combining a source product image with a model head image, optional masks, scene references, and prompt guidance.
nexscope_ai_model_swaphttps://api.nexscope.ai/api/skill-api/v1/skills/ai-model-swap/runAI Model Swap API 2.0
ai-model-swap-2-0Generate model images from a product image and a full model reference image with optional segmentation and scene controls.
nexscope_ai_model_swap_2_0https://api.nexscope.ai/api/skill-api/v1/skills/ai-model-swap-2-0/runAI Model Scene & Background Replacement API
ai-model-scene-background-replacementGenerate scene variants for a model image using either a scene reference image or a text scene prompt.
nexscope_ai_model_scene_background_replacementhttps://api.nexscope.ai/api/skill-api/v1/skills/ai-model-scene-background-replacement/runAI Clothes Changer API for Tops & Bottoms
ai-clothes-changer-for-tops-bottomsDress a model image with upper and/or lower garment assets, supporting optional masks and original garment references.
nexscope_ai_clothes_changer_for_tops_bottomshttps://api.nexscope.ai/api/skill-api/v1/skills/ai-clothes-changer-for-tops-bottoms/runAI Suit Virtual Try-On API
ai-suit-virtual-try-onDress a model image with a one-piece outfit or suit image, supporting optional garment and model masks.
nexscope_ai_suit_virtual_try_onhttps://api.nexscope.ai/api/skill-api/v1/skills/ai-suit-virtual-try-on/runVirtual Try-On API
virtual-try-onGenerate wearable-product imagery from a source person image and target product image.
nexscope_virtual_try_onhttps://api.nexscope.ai/api/skill-api/v1/skills/virtual-try-on/runProduct Replacement API
product-replacementUse source and target product references to replace product content while preserving scene consistency.
nexscope_product_replacementhttps://api.nexscope.ai/api/skill-api/v1/skills/product-replacement/runProduct Scene Variations API
product-scene-variationsGenerate multiple ecommerce scene variants from a product image, optional segmentation, and prompt guidance.
nexscope_product_scene_variationshttps://api.nexscope.ai/api/skill-api/v1/skills/product-scene-variations/runAI Background Generator API
ai-background-generatorCreate product or lifestyle scene images from text prompts and optional reference images.
nexscope_ai_background_generatorhttps://api.nexscope.ai/api/skill-api/v1/skills/ai-background-generator/runSimilar Image Variations API
similar-image-variationsGenerate similar ecommerce images from a reference image with optional prompt and strength controls.
nexscope_similar_image_variationshttps://api.nexscope.ai/api/skill-api/v1/skills/similar-image-variations/runBackground Remover API
background-removerCut out products, people, or clothing from a source image using an upstream background-removal model.
nexscope_background_removerhttps://api.nexscope.ai/api/skill-api/v1/skills/background-remover/runFine Cutout Image Segmentation API
fine-cutout-image-segmentationRun the Nexscope interactive cutout create/info flow as one API API call. The point list marks foreground/background guidance points.
nexscope_fine_cutout_image_segmentationhttps://api.nexscope.ai/api/skill-api/v1/skills/fine-cutout-image-segmentation/runImage Upscale API
image-upscaleIncrease image resolution and optionally enhance visual quality.
nexscope_image_upscalehttps://api.nexscope.ai/api/skill-api/v1/skills/image-upscale/runSmart Image Outpainting API
smart-image-outpaintingGenerate an expanded image around the original content using target width, height, and optional prompt.
nexscope_smart_image_outpaintinghttps://api.nexscope.ai/api/skill-api/v1/skills/smart-image-outpainting/runImage Translation API
image-translationTranslate image text from a source language to a target language for ecommerce localization.
nexscope_image_translationhttps://api.nexscope.ai/api/skill-api/v1/skills/image-translation/runAI Hand Repair API
ai-hand-repairImprove hand appearance in generated model or lifestyle images.
nexscope_ai_hand_repairhttps://api.nexscope.ai/api/skill-api/v1/skills/ai-hand-repair/runImage Inpainting API
image-inpaintingRepair or regenerate a local image region using a mask and prompt.
nexscope_image_inpaintinghttps://api.nexscope.ai/api/skill-api/v1/skills/image-inpainting/runPrint & Pattern Extraction API
print-pattern-extractionExtract visible print or pattern elements from product imagery.
nexscope_print_pattern_extractionhttps://api.nexscope.ai/api/skill-api/v1/skills/print-pattern-extraction/runObject Eraser & Image Object Removal API
object-eraser-image-object-removalRemove selected objects or regions using a mask image.
nexscope_object_eraser_image_object_removalhttps://api.nexscope.ai/api/skill-api/v1/skills/object-eraser-image-object-removal/runJewelry Text Design API
jewelry-text-designCreate decorative linked-word imagery using font, size, and prompt controls.
nexscope_jewelry_text_designhttps://api.nexscope.ai/api/skill-api/v1/skills/jewelry-text-design/runHandheld Product Mockup API
handheld-product-mockupGenerate natural hand-held product imagery from a person image and target product asset.
nexscope_handheld_product_mockuphttps://api.nexscope.ai/api/skill-api/v1/skills/handheld-product-mockup/runImage Captioning API
image-captioningExtract descriptive prompts or selling-point text from one or more images.
nexscope_image_captioninghttps://api.nexscope.ai/api/skill-api/v1/skills/image-captioning/runProduct Image Enhancement API
product-image-enhancementImprove product presentation quality in a single ecommerce image.
nexscope_product_image_enhancementhttps://api.nexscope.ai/api/skill-api/v1/skills/product-image-enhancement/runImage Text Editing API
image-text-editingUse an image mask to remove or edit text regions in an ecommerce image.
nexscope_image_text_editinghttps://api.nexscope.ai/api/skill-api/v1/skills/image-text-editing/runSmart Image Edit & Manipulation API v3
smart-image-edit-manipulation-v3Perform general image editing with provider, prompt, resolution, aspect ratio, and quality controls.
nexscope_smart_image_edit_manipulation_v3https://api.nexscope.ai/api/skill-api/v1/skills/smart-image-edit-manipulation-v3/runSmart Multi-Image Editing API v3
smart-multi-image-editing-v3Create an edited output from multiple source images using prompt, provider, resolution, and quality controls.
nexscope_smart_multi_image_editing_v3https://api.nexscope.ai/api/skill-api/v1/skills/smart-multi-image-editing-v3/runWhite Background Product Image API
whitebg-imageGenerate one square white-background product image from one or two references of the same product using GPT Image 2. Submit one approved target per request. Review product identity and listing suitability before use; this endpoint does not perform reference inspection, image-set planning, or marketplace compliance certification. Generation consumes Nexscope credits.
nexscope_whitebg_imagehttps://api.nexscope.ai/api/skill-api/v1/skills/whitebg-image/runAI Video Reclone API
ai-video-recloneGenerate a product marketing video using a reference video, reference images, and model-specific generation settings.
nexscope_ai_video_reclonehttps://api.nexscope.ai/api/skill-api/v1/skills/ai-video-reclone/runAI Product Marketing Image Set API v4
ai-product-marketing-image-set-v4Create ecommerce product marketing materials such as selling-point images and A+ style visuals from product images and brief inputs.
nexscope_ai_product_marketing_image_set_v4https://api.nexscope.ai/api/skill-api/v1/skills/ai-product-marketing-image-set-v4/runAI Apparel Image Set & Photography API v3
ai-apparel-image-set-photography-v3Create apparel ecommerce image sets from clothing images with optional model and scene references.
nexscope_ai_apparel_image_set_photography_v3https://api.nexscope.ai/api/skill-api/v1/skills/ai-apparel-image-set-photography-v3/runAI Model Pose Generation API
ai-model-pose-generationGenerate model pose variations from an input image and either a pose prompt or posture reference image.
nexscope_ai_model_pose_generationhttps://api.nexscope.ai/api/skill-api/v1/skills/ai-model-pose-generation/runSales Talking Video API
sales-talking-videoCreate a product-selling video from prompt and product image references.
nexscope_sales_talking_videohttps://api.nexscope.ai/api/skill-api/v1/skills/sales-talking-video/runProduct Logo Detection & Removal API
product-logo-detection-removalDetect and optionally remove a specified brand logo from a product image.
nexscope_product_logo_detection_removalhttps://api.nexscope.ai/api/skill-api/v1/skills/product-logo-detection-removal/runOne-Click Image Recoloring API v2
one-click-image-recoloring-v2Recolor the requested subject using one or more target colors.
nexscope_one_click_image_recoloring_v2https://api.nexscope.ai/api/skill-api/v1/skills/one-click-image-recoloring-v2/runAI Content Generation
Asynchronous product copy and product video generation APIs.
Patent & IP Risk
Patent, trademark, copyright and IP risk APIs.
Google Patent Search
google-patent-searchReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_google_patent_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/google-patent-search/runProduct TRO Detection
maidalv-product-tro-detectionAnalyzes a main product image with optional evidence images, text, keywords, and language.
nexscope_maidalv_product_tro_detectionhttps://api.nexscope.ai/api/skill-api/v1/skills/maidalv-product-tro-detection/runPatent Abstract Image Data
patent-abstract-image-dataRetrieves patent abstract images (drawings) from the Zhihuiya (PatSnap) patent database by patent ID or publication number. Also
nexscope_patent_abstract_image_datahttps://api.nexscope.ai/api/skill-api/v1/skills/patent-abstract-image-data/runPatent Cited By
patent-cited-byReturns cited-by counts and citing patent records for up to 100 patents.
nexscope_patent_cited_byhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-cited-by/runPatent Claims
patent-claimsRetrieves patent claims data from Zhihuiya (PatSnap). Also
nexscope_patent_claimshttps://api.nexscope.ai/api/skill-api/v1/skills/patent-claims/runPatent Claims Translation
patent-claims-translationRetrieves translated patent claims from the Zhihuiya (PatSnap) patent database. Also
nexscope_patent_claims_translationhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-claims-translation/runPatent Core Bibliography
patent-core-bibliographyReturns titles, abstracts, identifiers, dates, applicants, inventors, assignees, and classifications.
nexscope_patent_core_bibliographyhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-core-bibliography/runPatent Description Data
patent-description-dataRetrieve patent description (specification) data from the Zhihuiya patent database by patent ID or publication number.
nexscope_patent_description_datahttps://api.nexscope.ai/api/skill-api/v1/skills/patent-description-data/runPatent Description Data Translation
patent-description-data-translationRetrieve translated patent description (specification) text from Zhihuiya. Also
nexscope_patent_description_data_translationhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-description-data-translation/runPatent Detailed Bibliography
patent-detailed-bibliographyQuery patent bibliographic (catalog) information from the Zhihuiya patent database by patent ID or publication number.
nexscope_patent_detailed_bibliographyhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-detailed-bibliography/runPatent Fulltext Images
patent-fulltext-imagesRetrieve fulltext images (drawings, diagrams, charts) from patent documents by patent ID or publication number.
nexscope_patent_fulltext_imageshttps://api.nexscope.ai/api/skill-api/v1/skills/patent-fulltext-images/runPatent Family Data
patent-family-dataReturns patent family identifiers and members for up to 100 patents.
nexscope_patent_family_datahttps://api.nexscope.ai/api/skill-api/v1/skills/patent-family-data/runPatent Legal Status Data
patent-legal-status-dataQuery patent legal status information from the Zhihuiya (PatSnap) database. Also
nexscope_patent_legal_status_datahttps://api.nexscope.ai/api/skill-api/v1/skills/patent-legal-status-data/runPatent References
patent-referencesReturns forward citation details for up to 100 patents.
nexscope_patent_referenceshttps://api.nexscope.ai/api/skill-api/v1/skills/patent-references/runPatent Title Abstract Translation
patent-title-abstract-translationRetrieve translated patent titles and abstracts from the Zhihuiya (PatSnap) patent database. Also
nexscope_patent_title_abstract_translationhttps://api.nexscope.ai/api/skill-api/v1/skills/patent-title-abstract-translation/runRuiguan Copyright Detection
ruiguan-copyright-detectionDetect image copyright infringement risks by comparing against a database of registered copyrighted works with similarity scoring, TRO litigation history, and radar-based infringement assessment.
nexscope_ruiguan_copyright_detectionhttps://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-copyright-detection/runRuiguan Detection Patent Design
ruiguan-detection-patent-designDetect design patent infringement risks by comparing a product image against a global design patent database across 25+ jurisdictions.
nexscope_ruiguan_detection_patent_designhttps://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-detection-patent-design/runRuiguan Gun Parts Search
ruiguan-gun-parts-searchCheck product images against a database of policy-violating items using visual similarity matching.
nexscope_ruiguan_gun_parts_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-gun-parts-search/runRuiguan Trademark Graphic Detection
ruiguan-trademark-graphic-detectionDetect graphic trademarks in product images by comparing against registered trademark databases across 15 major trademark offices using YOLO-based object detection and visual similarity.
nexscope_ruiguan_trademark_graphic_detectionhttps://api.nexscope.ai/api/skill-api/v1/skills/ruiguan-trademark-graphic-detection/runText Trademark Detector
text-trademark-detectorText trademark detection and infringement risk analysis for e-commerce product listings.
nexscope_text_trademark_detectorhttps://api.nexscope.ai/api/skill-api/v1/skills/text-trademark-detector/runUtility Patent Detector
utility-patent-detectorDetect and search for similar utility/invention patents based on product information.
nexscope_utility_patent_detectorhttps://api.nexscope.ai/api/skill-api/v1/skills/utility-patent-detector/runZhihuiya Patent Image Search
zhihuiya-patent-image-searchPerform visual similarity search for design patents using an image URL, with filtering by country, legal status, date ranges, Locarno classification, and assignee. Supports design patent types only (type D). For utility model patents, use ecommerce.zhihuiya-utility-patent-image-search instead.
nexscope_zhihuiya_patent_image_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/zhihuiya-patent-image-search/runZhihuiya Utility Patent Image Search
zhihuiya-utility-patent-image-searchPerform visual similarity search for utility model patents using an image URL, with filtering by country, legal status, date ranges, and assignee. Supports utility model patents only (type U) with shape-only or shape+pattern+color matching models. For design patents, use ecommerce.zhihuiya-patent-image-search instead.
nexscope_zhihuiya_utility_patent_image_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/zhihuiya-utility-patent-image-search/runProduct & Market Research
General ecommerce product and market research APIs.
Mercado Market Intelligence
mercado-market-intelligenceReturns normalized public ecommerce research data with a fixed read-only provider path.
nexscope_mercado_market_intelligencehttps://api.nexscope.ai/api/skill-api/v1/skills/mercado-market-intelligence/runMercado Product Selection
mercado-product-selectionValidates the selected tool and its required arguments before calling the governed Lingdong gateway.
nexscope_mercado_product_selectionhttps://api.nexscope.ai/api/skill-api/v1/skills/mercado-product-selection/runAmazon Advertising
Amazon Ads SP Audience Report
amazon-ads-sp-audience-reportUses existing Amazon Ads authorization and tokenized download handling. Create once, poll by reportId, then download using a documentToken.
nexscope_amazon_ads_sp_audience_reporthttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-sp-audience-report/runAmazon Ads SP Search Impression Share Report
amazon-ads-sp-search-impression-share-reportUses existing Amazon Ads authorization and tokenized download handling. Create once, poll by reportId, then download using a documentToken.
nexscope_amazon_ads_sp_search_impression_share_reporthttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-sp-search-impression-share-report/runAmazon Ads SP Insights Report Status
amazon-ads-sp-insights-report-statusUses existing Amazon Ads authorization and tokenized download handling. Create once, poll by reportId, then download using a documentToken.
nexscope_amazon_ads_sp_insights_report_statushttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-sp-insights-report-status/runAmazon Ads SP Insights Report Download
amazon-ads-sp-insights-report-downloadUses existing Amazon Ads authorization and tokenized download handling. Create once, poll by reportId, then download using a documentToken.
nexscope_amazon_ads_sp_insights_report_downloadhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-sp-insights-report-download/runAmazon Ads Manager
amazon-ads-managerAccepts only documented ads_manager.sb/sd/sp operation IDs. Provider methods and paths are derived server-side; mutations require preview followed by confirmation.
nexscope_amazon_ads_managerhttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-manager/runAmazon Ads API Access
amazon-ads-api-accessStarts Amazon Ads OAuth authorization or returns safe connection and profile metadata. Access and refresh tokens are never accepted or returned.
nexscope_amazon_ads_api_accesshttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-api-access/runAmazon Ads Reporting
amazon-ads-reportingUses the source get_report contract: omit reportId to create, supply reportId to poll, or supply a backend documentToken to download.
nexscope_amazon_ads_reportinghttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-ads-reporting/runAmazon Advertising
amazon-advertisingAccepts only documented ads_manager.sb/sd/sp operation IDs. Provider methods and paths are derived server-side; mutations require preview followed by confirmation.
nexscope_amazon_advertisinghttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-advertising/runPatent Intelligence
Keywords Trends
Keyword Historical Profile Snapshots
seo-keyword-historyKeyword Historical Profile Snapshots. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_keyword_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-history/runSite Category Related Keywords
seo-site-keywordsSite Category Related Keywords. Bounded DataForSEO database facts with explicit missing evidence. One fixed task; no pagination. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_site_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-site-keywords/runCategory Keywords
seo-category-keywordsCategory Keywords. Bounded DataForSEO database facts with explicit missing evidence. One fixed task; no pagination. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_category_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-category-keywords/runHigh Search Volume Database Keywords
seo-top-searchesHigh Search Volume Database Keywords. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_top_searcheshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-top-searches/runClickstream Search Volume
seo-clickstream-search-volumeclickstream estimate with explicit missing evidence and no language filter. One fixed Live task, no additional requests. Estimates are not Google Ads metrics. Prices remain unapproved. Historical owner retrieval is local for seven days.
nexscope_seo_clickstream_search_volumehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-clickstream-search-volume/runClickstream Country Search Volume Distribution
seo-search-volume-country-distributionclickstream country distribution with explicit missing evidence and no language filter. One fixed Live task, no additional requests. Estimates are not Google Ads metrics. Prices remain unapproved. Historical owner retrieval is local for seven days.
nexscope_seo_search_volume_country_distributionhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-search-volume-country-distribution/runKeyword Interest History
seo-keyword-interest-historyDataForSEO Trends relative interest history for the United States. Scores describe relative interest; zero means insufficient data. Preserve provider dates and do not interpolate search volumes.
nexscope_seo_keyword_interest_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-interest-history/runKeyword Interest by Region
seo-keyword-interest-regionsDataForSEO Trends relative keyword interest across United States regions. Regional scores are relative indices, not country percentages or absolute search counts. Preserve provider region IDs.
nexscope_seo_keyword_interest_regionshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-interest-regions/runKeyword Interest by Demographic
seo-keyword-interest-demographicsDataForSEO Trends relative keyword interest by age and gender. Each dimension has relative peak-normalized scores. Do not infer population shares, counts, income, or unreturned demographic buckets.
nexscope_seo_keyword_interest_demographicshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-interest-demographics/runGoogle Search Autocomplete
seo-search-autocompleteA Google US English autocomplete sample for one keyword. Preserve suggestions from the fixed client. Missing optional fields stay null; no complete search coverage is implied.
nexscope_seo_search_autocompletehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-search-autocomplete/runSearch Results Rankings
Historical Organic SERP Snapshots
seo-historical-serpsHistorical Organic SERP Snapshots. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_historical_serpshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-historical-serps/runGoogle Maps Search Results
seo-google-maps-resultsA Google Maps US English sample of non-advertising map results. Preserve place identifiers, string CIDs, coordinates, and rating scales. Paid map items are outside this projection.
nexscope_seo_google_maps_resultshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-google-maps-results/runGoogle Local Finder Results
seo-google-local-finder-resultsA Google Local Finder US English sample of local listings. Preserve paid status and booking links. Do not infer addresses or coordinates from descriptions.
nexscope_seo_google_local_finder_resultshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-google-local-finder-results/runGoogle News Search Results
seo-google-news-resultsA Google US English news_search sample with publication evidence. Top stories remain observed sample types without expansion. Relative publication labels do not replace timestamps.
nexscope_seo_google_news_resultshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-google-news-results/runGoogle Image Search Results
seo-google-image-resultsA Google US English image_search sample with page and image references. Keep page, original image, and cached image URLs distinct. References do not imply image ownership or authorize downloads.
nexscope_seo_google_image_resultshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-google-image-results/runReverse Image Search Results
seo-reverse-image-resultsReverse Image Search Results. Bounded Google reverse-image search observations with explicit missing evidence. One submit and at most eight fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_reverse_image_resultshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-reverse-image-results/runShopping Products
seo-shopping-productsA bounded Google Shopping product search with observed product references and explicit missing evidence. One submit and at most eight fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_shopping_productshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-shopping-products/runShopping Product Details
seo-shopping-product-detailsSource-bound Google Shopping product details with observed specifications and explicit missing evidence. One submit and at most eight fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_shopping_product_detailshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-shopping-product-details/runShopping Seller Offers
seo-shopping-seller-offersSource-bound Google Shopping seller offers with observed prices and explicit missing evidence. One submit and at most eight fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_shopping_seller_offershttps://api.nexscope.ai/api/skill-api/v1/skills/seo-shopping-seller-offers/runSerp Screenshot Evidence
serp-screenshot-evidenceSerp screenshot evidence with explicit observation scope and missing evidence. Uses a fixed bounded plan. Source and image facts retain their observation time; a screenshot does not prove current indexing or complete website coverage.
nexscope_serp_screenshot_evidencehttps://api.nexscope.ai/api/skill-api/v1/skills/serp-screenshot-evidence/runCompetitors Traffic
Organic Keyword Set Competitors
seo-serp-competitorsOrganic Keyword Set Competitors. Bounded DataForSEO database facts with explicit missing evidence. One fixed task; no pagination. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_serp_competitorshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-serp-competitors/runDomain Organic Ranked Keywords
seo-domain-ranked-keywordsDomain Organic Ranked Keywords. Bounded DataForSEO database facts with explicit missing evidence. One fixed task; no pagination. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_domain_ranked_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-ranked-keywords/runShared Organic Keyword Competitors
seo-domain-competitorsShared Organic Keyword Competitors. Bounded DataForSEO database facts with explicit missing evidence. One fixed task; no pagination. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_domain_competitorshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-competitors/runDomain Organic Keyword Intersection
seo-domain-keyword-intersectionDomain Organic Keyword Intersection. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_domain_keyword_intersectionhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-keyword-intersection/runSubdomain Organic Performance
seo-subdomain-performanceSubdomain Organic Performance. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_subdomain_performancehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-subdomain-performance/runTop Organic Ranking Pages
seo-top-pagesTop Organic Ranking Pages. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_top_pageshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-top-pages/runDomain Organic and Paid Rank Overview
seo-domain-rank-overviewDomain Organic and Paid Rank Overview. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_domain_rank_overviewhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-rank-overview/runDomain Historical Ranking Distribution
seo-domain-rank-historyDomain Historical Ranking Distribution. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_domain_rank_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-rank-history/runPage Organic Keyword Intersection
seo-page-keyword-intersectionPage Organic Keyword Intersection. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_page_keyword_intersectionhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-page-keyword-intersection/runMultiple Target Organic and Paid Traffic Estimates
seo-target-traffic-estimatesMultiple Target Organic and Paid Traffic Estimates. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_target_traffic_estimateshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-target-traffic-estimates/runHistorical Multi-Domain Traffic Comparison
seo-domain-traffic-historyHistorical Multi-Domain Traffic Comparison. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_domain_traffic_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-traffic-history/runRanked Keyword Domain Categories
seo-domain-categoriesRanked Keyword Domain Categories. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_domain_categorieshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-domain-categories/runCategory Related Domain Monthly Comparison
seo-category-domain-comparisonCategory Related Domain Monthly Comparison. Bounded Google database facts; estimated traffic is not measured visits. One fixed Live POST, no pagination. Unknown fields and missing values are explicit. Execution and publication remain unapproved. Owner-only historical retrieval retains results for seven days.
nexscope_seo_category_domain_comparisonhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-category-domain-comparison/runPages Websites
Website Audit Summary
website-audit-summaryWebsite audit summary with explicit observation scope and missing evidence. Uses a fixed bounded plan. Source and image facts retain their observation time; a screenshot does not prove current indexing or complete website coverage.
nexscope_website_audit_summaryhttps://api.nexscope.ai/api/skill-api/v1/skills/website-audit-summary/runWebsite Page Checks
website-page-checksWebsite Page Checks from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_website_page_checkshttps://api.nexscope.ai/api/skill-api/v1/skills/website-page-checks/runResource Affected Pages
resource-affected-pagesResource Affected Pages from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_resource_affected_pageshttps://api.nexscope.ai/api/skill-api/v1/skills/resource-affected-pages/runWebsite Resource Status
website-resource-statusWebsite Resource Status from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_website_resource_statushttps://api.nexscope.ai/api/skill-api/v1/skills/website-resource-status/runDuplicate Page Tags
duplicate-page-tagsDuplicate Page Tags from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_duplicate_page_tagshttps://api.nexscope.ai/api/skill-api/v1/skills/duplicate-page-tags/runDuplicate Page Content
duplicate-page-contentDuplicate Page Content from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_duplicate_page_contenthttps://api.nexscope.ai/api/skill-api/v1/skills/duplicate-page-content/runWebsite Links
website-linksWebsite Links from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_website_linkshttps://api.nexscope.ai/api/skill-api/v1/skills/website-links/runWebsite Redirect Chains
website-redirect-chainsWebsite Redirect Chains from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_website_redirect_chainshttps://api.nexscope.ai/api/skill-api/v1/skills/website-redirect-chains/runNon Indexable Pages
non-indexable-pagesNon Indexable Pages from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_non_indexable_pageshttps://api.nexscope.ai/api/skill-api/v1/skills/non-indexable-pages/runPage Loading Waterfall
page-loading-waterfallPage Loading Waterfall from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_page_loading_waterfallhttps://api.nexscope.ai/api/skill-api/v1/skills/page-loading-waterfall/runPage Keyword Density
page-keyword-densityPage Keyword Density from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_page_keyword_densityhttps://api.nexscope.ai/api/skill-api/v1/skills/page-keyword-density/runPage Structured Data
page-structured-dataPage Structured Data from a bounded crawl sample. Returns typed source evidence and missing-field diagnostics. Source ownership, version, expiry and membership are checked when run. This sample does not describe every page of a website.
nexscope_page_structured_datahttps://api.nexscope.ai/api/skill-api/v1/skills/page-structured-data/runPage Screenshot
page-screenshotPage screenshot with explicit observation scope and missing evidence. Uses a fixed bounded plan. Source and image facts retain their observation time; a screenshot does not prove current indexing or complete website coverage.
nexscope_page_screenshothttps://api.nexscope.ai/api/skill-api/v1/skills/page-screenshot/runPage Lighthouse Laboratory Evidence
page-lighthousePage Lighthouse Laboratory Evidence. Bounded Lighthouse laboratory facts with explicit missing evidence. One submit and at most six fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_page_lighthousehttps://api.nexscope.ai/api/skill-api/v1/skills/page-lighthouse/runAi Search Citations
seo-model-answer-observation
seo-model-answer-observationSingle fixed model answer observation with no web search and at most512 output tokens. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_model_answer_observationhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-model-answer-observation/runAI Search Citation Sample
seo-ai-search-citation-sampleAI Search Citation Sample. A bounded consumer ChatGPT answer and citation observation with explicit missing evidence. One submit and at most eight fixed reads. Missing values are not zero. Prices and publication are unapproved. Owner-only historical results are retained seven days.
nexscope_seo_ai_search_citation_samplehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-search-citation-sample/runseo-ai-mention-records
seo-ai-mention-recordsHistorical answer records with separate cited sources, search references and brand entities. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_mention_recordshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-mention-records/runseo-ai-target-metrics
seo-ai-target-metricsAI target metrics from provider database aggregates. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_target_metricshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-target-metrics/runseo-ai-target-comparison
seo-ai-target-comparisonIndependent target group metrics and provider union aggregate without summing overlapping groups. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_target_comparisonhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-target-comparison/runseo-ai-top-cited-pages
seo-ai-top-cited-pagesProvider ranked cited pages and their independent aggregate metrics. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_top_cited_pageshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-top-cited-pages/runseo-ai-top-cited-domains
seo-ai-top-cited-domainsProvider ranked cited domains without merging subdomains. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_top_cited_domainshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-top-cited-domains/runseo-ai-top-mentioned-brands
seo-ai-top-mentioned-brandsChatGPT database brand mentions with provider brand taxonomy. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_top_mentioned_brandshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-top-mentioned-brands/runseo-ai-top-brand-categories
seo-ai-top-brand-categoriesChatGPT database brand categories with provider category labels. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_top_brand_categorieshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-top-brand-categories/runseo-ai-mention-history
seo-ai-mention-historyMonthly absolute mentions from the provider historical database. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_mention_historyhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-mention-history/runseo-ai-mention-deltas
seo-ai-mention-deltasProvider adjacent timestamp deltas with signed independent values. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_mention_deltashttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-mention-deltas/runseo-ai-mention-new-lost
seo-ai-mention-new-lostProvider new and lost mention statistics retained as separate nonnegative values. Historical provider database facts, not a live model execution. Domain filters use cited sources and keyword filters use answer text. Preserve nullable evidence and unsupported dimensions.
nexscope_seo_ai_mention_new_losthttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-mention-new-lost/runAI Keyword Search Volume Estimates
seo-ai-keyword-volumePeople Also Ask statistical estimates of AI keyword search volume. These are provider estimates, not measured ChatGPT queries or Google Ads volume. Preserve missing keywords and monthly observations.
nexscope_seo_ai_keyword_volumehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ai-keyword-volume/runAdvertising Intelligence
seo-paid-keywords
seo-paid-keywordsProvider database paid keyword ranks with source measurement times. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_paid_keywordshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-paid-keywords/runseo-search-ad-samples
seo-search-ad-samplesSingle page US desktop paid search ad samples; ordinary punctuation preserved. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_search_ad_sampleshttps://api.nexscope.ai/api/skill-api/v1/skills/seo-search-ad-samples/runseo-advertiser-search
seo-advertiser-searchSingle advertiser directory matches, with approximate ad counts. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_advertiser_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-advertiser-search/runseo-ad-transparency-search
seo-ad-transparency-searchGoogle Search transparency records over the provider default history. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_ad_transparency_searchhttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ad-transparency-search/runseo-keyword-ad-traffic-forecast
seo-keyword-ad-traffic-forecastGoogle Ads keyword click, CPC and advertising spend forecasts over a frozen future date range. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_keyword_ad_traffic_forecasthttps://api.nexscope.ai/api/skill-api/v1/skills/seo-keyword-ad-traffic-forecast/runseo-ad-audience-estimate
seo-ad-audience-estimateBing monthly aggregate audience ranges under a separate daily advertising budget. Nullable fields preserve missing evidence. Provider observations and estimates do not establish actual account performance. No additional calls or fallback.
nexscope_seo_ad_audience_estimatehttps://api.nexscope.ai/api/skill-api/v1/skills/seo-ad-audience-estimate/run