Shopify: Search Products
Search for products in your Shopify store. Filter by title, vendor, type, or collection. Returns product details including status and pricing. Ideal for: inventory checks, product lookup, catalog management, price monitoring. Required scope: read_products.
Catalog action Integrations shopify
Search for products in your Shopify store. Filter by title, vendor, type, or collection. Returns product details including status and pricing. Ideal for: inventory checks, product lookup, catalog management, price monitoring. Required scope: read_products.
At a Glance
| Field | Value |
|---|---|
| Action ID | shopify-search-products |
| Category | Integrations |
| Connector | shopify |
| Requires gas | No |
| Funds movement | None declared |
| Tags | shopify, ecommerce, products, search, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
title | string | No | Filter products by title (case-insensitive partial match) |
productType | string | No | Filter products by product type |
vendor | string | No | Filter products by vendor name |
collectionId | string | No | Filter products by collection ID (GID format: gid://shopify/Collection/123) |
status | string | No | Filter products by status (default: all statuses) |
limit | number | No | Maximum number of products to return (default: 50, max: 250) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the search was successful |
data | object | No | Shopify API response data |
exports | object | No | Exported values from the action |
Examples
json{ "type": "shopify-search-products", "payload": { "title": "example-title", "productType": "example-productType", "vendor": "example-vendor", "collectionId": "example-collectionId", "status": "ACTIVE" }, "children": [], "connector": { "type": "shopify", "id": "conn_shopify" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/shopify-search-products/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "title": "example-title", "productType": "example-productType", "vendor": "example-vendor", "collectionId": "example-collectionId", "status": "ACTIVE" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
