GET
/
v1
/
products
curl --request GET \
  --url https://api.quickbutik.com/v1/products \
  --header 'Authorization: Basic <encoded-value>'
{
  "product": {
    "id": "12",
    "sku": "BBB222",
    "hasVariants": "1",
    "title": "VITA Ljus lampskärm",
    "visible": "1",
    "qty": "<string>",
    "price": "899",
    "purchase_price": "<string>",
    "before_price": "<string>",
    "description": "<string>",
    "seo_title": "<string>",
    "seo_description": "<string>",
    "weight": "0",
    "gtin": "<string>",
    "date_modified": "2017-09-27 10:29:22"
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Basic Auth. Use your API key as both username and password. See the Authentication guide for complete setup instructions.

Query Parameters

product_id
string

Product ID(s) to fetch. Can be a single ID or comma-separated list of IDs

Example:

"123,456,789"

sku
string

Product SKU(s) to fetch. Can be a single SKU or comma-separated list of SKUs

Example:

"T-SHIRT-123,HOODIE-456"

Search products by title, description, SKU, or variant SKU

Example:

"cotton t-shirt"

categories
string

Filter products by category ID(s). Can be a single ID or comma-separated list of IDs

Example:

"1,2,3"

visibility
boolean

Filter products by visibility status

Example:

true

from_date_modified
integer

Filter products modified since this date (UNIX timestamp)

Example:

1596097247

order_by
enum<string>
default:id

Field to sort products by

Available options:
id,
title,
price,
qty,
sku,
visits,
purchase_price
sort_order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
limit
integer
default:100

The maximum number of rows returned. The default is 100, and the value may not exceed 500

Required range: 1 <= x <= 500
offset
integer
default:0

The amount of rows to skip before returning. This can be used to loop through all objects if there are more than the limit allows to be returned

Required range: x >= 0
include_details
boolean

Indicates whether or not details are returned. Default is false for multiple items, true for single items

Response

200
application/json

Product(s) retrieved successfully

The response is of type object.