🚀 New: Edit Shoppex themes from the dashboard, the CLI, or an AI agent — one unified workflow. Learn more →
curl --request GET \
--url https://api.shoppex.io/dev/v1/products/search \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "prod_db_1",
"uniqid": "prod_1",
"shop_id": "shop_1",
"slug": "starter-pack",
"type": "DYNAMIC",
"title": "Starter Pack",
"currency": "USD",
"price": 19.99,
"price_display": 19.99,
"description": "Product description",
"gateways": [
"PAYPAL"
],
"custom_fields": [],
"delivery_instructions": null,
"volume_discounts": [],
"quantity_min": 1,
"quantity_max": -1,
"quantity_warning": 0,
"stock": 0,
"stock_delimiter": "\n",
"unlisted": false,
"private": false,
"on_hold": false,
"sort_priority": 0,
"crypto_confirmations": 1,
"max_risk_level": 0,
"block_vpn_proxies": false,
"delivery_text": "",
"delivery_time": null,
"service_text": "",
"dynamic_webhook": null,
"created_at": 1711965600,
"updated_at": 1711965600,
"variants": [
{
"id": "var_1",
"uniqid": "var_1",
"title": "Monthly",
"description": null,
"price": 9.99,
"price_display": 9.99,
"stock": 5,
"is_default": true,
"sort_order": 0
}
]
}
],
"pagination": {
"next_cursor": null,
"has_more": false
},
"stats": {
"total": 1,
"published": 1,
"low_stock": 0,
"out_of_stock": 0
}
}Developer API operation for GET /dev/v1/products/search.
curl --request GET \
--url https://api.shoppex.io/dev/v1/products/search \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "prod_db_1",
"uniqid": "prod_1",
"shop_id": "shop_1",
"slug": "starter-pack",
"type": "DYNAMIC",
"title": "Starter Pack",
"currency": "USD",
"price": 19.99,
"price_display": 19.99,
"description": "Product description",
"gateways": [
"PAYPAL"
],
"custom_fields": [],
"delivery_instructions": null,
"volume_discounts": [],
"quantity_min": 1,
"quantity_max": -1,
"quantity_warning": 0,
"stock": 0,
"stock_delimiter": "\n",
"unlisted": false,
"private": false,
"on_hold": false,
"sort_priority": 0,
"crypto_confirmations": 1,
"max_risk_level": 0,
"block_vpn_proxies": false,
"delivery_text": "",
"delivery_time": null,
"service_text": "",
"dynamic_webhook": null,
"created_at": 1711965600,
"updated_at": 1711965600,
"variants": [
{
"id": "var_1",
"uniqid": "var_1",
"title": "Monthly",
"description": null,
"price": 9.99,
"price_display": 9.99,
"stock": 5,
"is_default": true,
"sort_order": 0
}
]
}
],
"pagination": {
"next_cursor": null,
"has_more": false
},
"stats": {
"total": 1,
"published": 1,
"low_stock": 0,
"out_of_stock": 0
}
}Use your Shoppex API key in the Authorization header.