Skip to main content
GET
/
stores
/
{storeId}
/
products
cURL
curl --request GET \
  --url https://api.pandabase.io/v2/core/stores/{storeId}/products/ \
  --header 'Authorization: Bearer <token>'
{
  "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
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pandabase.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token mode — passes the secret directly. Token starts with sk_.

Path Parameters

storeId
string
required
Required string length: 12 - 48

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:25
Required range: 1 <= x <= 100
Maximum string length: 128
productType
Available options:
SUBSCRIPTION
status
Available options:
DRAFT
pricingModel
Available options:
STANDARD
inStock
boolean
categoryId
string
Required string length: 12 - 48
sortBy
Available options:
title
sortOrder
Available options:
asc

Response

Default Response

ok
enum<boolean>
required
Available options:
true
data
any
required