linkfox-ehunt-shopify-product-query

Queries EHunt Shopify product data through the LinkFox gateway with multi-dimensional filters.

17|3|Updated Jun 18, 2026
One-click install
npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-ehunt-shopify-product-query-w9uk5ie8v
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: linkfox-ehunt-shopify-product-query
Source: https://github.com/w9uk5ie8v/LinkFoxSkills/tree/main/linkfox-ehunt-shopify-product-query
Command: npx skills add https://github.com/w9uk5ie8v/LinkFoxSkills --skill linkfox-ehunt-shopify-product-query-w9uk5ie8v

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires jmespath, and includes scripts (resource) and references (resource) components.

What problem does it solve? Finding winning Shopify products for independent-store sourcing and dropshipping requires filtering large product catalogs by sales, price, competition, and ad signals, which is slow and error-prone when done manually. ## Core Features & Use Cases - Multi-dimensional product filtering: Search Shopify products by keyword or URL, price range, weekly sales, publish date, Facebook ads, competition level, supplier availability, and shipping country via the ehunt/shopify/productQuery gateway route. - Sorting and pagination: Sort by weekly sales, price, ad count, competition, or revenue growth, with page-based navigation up to 100 items per page. - Large response handling: Persist bulky API responses to disk with response_io.py and extract only needed fields using JMESPath or field lists. - Use Case: A dropshipping researcher asks for US-shipped phone cases with weekly sales above 100 and active Facebook ads, then receives a filtered product list with prices, store links, and competition counts. ## Quick Start Ask the agent to use the EHunt Shopify product query to find Shopify products matching your keyword, price range, and weekly sales criteria, for example: "Find Shopify phone case products shipped from the US with weekly sales over 50."

Frequently Asked Questions about linkfox-ehunt-shopify-product-query

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Shopify products by keyword and filters?▼

Call the ehunt/shopify/productQuery gateway route with a JSON body containing searchKey plus optional filters like priceMin/priceMax, salesWeeklyMin/salesWeeklyMax, country, and facebookAd. The response returns a products array with pricing, weekly sales, and store details.

What filters does the EHunt Shopify product query support?▼

It supports keyword or product URL search, price range, weekly sales range, publish date range, Facebook ad presence, competition range, supplier availability, deleted-item visibility, and shipping country as a two-letter code. Sorting uses integer enums, defaulting to weekly sales descending.

Do I need an API key to use the EHunt Shopify query script?▼

Yes, the script requires the LINKFOXAGENT_API_KEY environment variable for gateway authentication. Without it, the script exits with an error message explaining how to set the key.

Why does the Shopify product query return a 404 error?▼

A 404 means the deployment's HTTP path differs from the default ehunt/shopify/productQuery segment. Confirm the actual path with listEnabledTool or operations staff, then set LINKFOX_EHUNT_SHOPIFY_PRODUCT_QUERY_PATH to override it.

How do I handle large Shopify product query responses?▼

Use response_io.py run to persist the full response to a file outside any git tree, then use the read subcommand with --fields or a JMESPath --path to extract only needed fields. Delete persisted files afterward since they may contain sensitive pricing data.