🚀 New: Theme Control Plane API — build, customize, and deploy themes programmatically. Learn more →
curl --request GET \
--url https://api.shoppex.io/dev/v1/products/{id}/serials \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "serial_1",
"serial": "ABC-123",
"variant_id": null,
"variant_title": null,
"created_at": "2026-03-16T10:00:00.000Z"
}
],
"pagination": {
"total": 21,
"page": 2,
"limit": 10,
"total_pages": 3,
"has_more": true
}
}Returns unlinked inventory serials for a base serial product that does not use variants. Use the variant serial routes only when the product inventory is tracked per variant.
curl --request GET \
--url https://api.shoppex.io/dev/v1/products/{id}/serials \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "serial_1",
"serial": "ABC-123",
"variant_id": null,
"variant_title": null,
"created_at": "2026-03-16T10:00:00.000Z"
}
],
"pagination": {
"total": 21,
"page": 2,
"limit": 10,
"total_pages": 3,
"has_more": true
}
}