List products

Returns a list of products on the store. Soft-deleted products are excluded. Requires the PRODUCTS_READ scope.

GET https://api.pandabase.io/v2/core/stores/{storeId}/products/

Authentication

Requires a bearer token (sk_…) or an API key in the header Authorization.

Path parameters

storeId string required

(length 12–48)

Query parameters

page integer default: 1

(range 1–∞, defaults to 1)

limit integer default: 25

(range 1–100, defaults to 25)

search string

(length 0–128)

productType enum

No description.

status enum

No description.

pricingModel enum

No description.

inStock boolean

No description.

categoryId string

(length 12–48)

sortBy enum

No description.

sortOrder enum

No description.

Header parameters

idempotency-key string

(length 8–32)

Response 200

Default Response

ok enum required

(one of true)

data object required

No description.

Response 400

Default Response

ok enum required

(one of false)

error string required

No description.

Request
curl -X GET https://api.pandabase.io/v2/core/stores/:storeId/products/
Response
{  "ok": true,  "data": {    "items": [      {        "id": "prd_8h4t6sqzy3x9w5n2k1m0vqbf",        "title": "Pro Plan",        "subtitle": "Everything you need to ship",        "description": "Full access to the platform. Unlimited stores, no transaction caps.",        "handle": "pro-plan",        "price": 2900,        "compareAtPrice": 4900,        "images": [          "https://cdn.pandabase.io/products/img_xxx.jpg"        ],        "inStock": true,        "currency": "USD",        "productType": "DIGITAL",        "fulfillmentMode": "LICENSE_POOL",        "pricingModel": "STANDARD",        "status": "ACTIVE",        "minimumPrice": null,        "maxPerCustomer": null,        "availableFrom": null,        "availableUntil": null,        "revokeOnRefund": true,        "options": [],        "variants": [],        "categories": []      }    ],    "pagination": {      "page": 1,      "limit": 25,      "total": 1,      "totalPages": 1    }  }}