Skip to main content
GET
/
v3
/
bundles
/
{bundle_id}
/
bundle-price-options
List bundle price options
curl --request GET \
  --url https://api.myscalev.com/v3/bundles/{bundle_id}/bundle-price-options \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "bundle_id": 123,
      "id": 123,
      "name": "<string>",
      "price": 123,
      "price_bt": 123,
      "slug": "<string>",
      "stores": [
        {
          "custom_domain": {
            "full_url": "<string>",
            "id": 123,
            "is_verified": true
          },
          "id": 123,
          "name": "<string>"
        }
      ],
      "unique_id": "<string>"
    }
  ],
  "is_paginated": true,
  "has_next": false,
  "last_id": 99,
  "page_size": 25
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

bundle_id
string
required

Query Parameters

last_id
integer

The ID of the last item from the previous page. Used for cursor-based pagination.

page_size
integer
default:25

Number of items to return per page. Default is 25, maximum is 25.

Required range: x <= 25

Response

Bundle price options list

Paginated list payload for v3.

data
BundlePriceOption · object[]
required
is_paginated
enum<boolean>
required
Available options:
true
Example:

true

has_next
boolean
default:false
Example:

false

last_id
integer | null
Example:

99

page_size
integer
default:25
Example:

25