Skip to main content
GET
/
v3
/
products
/
count
Count business products
curl --request GET \
  --url https://api.myscalev.com/v3/products/count \
  --header 'Authorization: Bearer <token>'
{
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_size
integer

Number of items per page (default: 25, max: 25)

Required range: x <= 25
Example:

25

last_id
integer

Last order ID for cursor-based pagination

Search term to filter products by name (case-insensitive, partial match)

is_inventory
boolean

Filter products by inventory tracking status (true or false)

is_product_sharing
boolean

Filter products by product sharing status (true or false)

warehouse_id
integer

Filter products associated with a specific warehouse ID

qty_type
enum<string>

Type of quantity to filter by. Options are 'available_qty' (only products with variants that have available quantity > 0)

Available options:
available_qty
store_id
integer

Filter products associated with a specific store ID

is_checked
boolean

Show variants in products where is_checked is true or false

is_owned
boolean

Filter products by ownership. 'true' returns products owned by the business, 'false' returns shared products

item_type
enum<string>

Filter products by item type (physical, digital, course, license, subscription) Type of the product item

Available options:
physical,
digital,
course,
license,
subscription
label
string

Filter products associated with a specific label name

pricing_type
enum<string>

Filter products by pricing type (one_time or recurring)

Available options:
one_time,
recurring

Response

Products count

count
integer

Total number of products