- Products
- Get all products
Get a list of all the live products.
GET
/v1/products
baseUrl
limit
offset
saleType
sold
curl --request GET \
--url https://api.bitski.com/v1/products \
--header 'Content-Type: application/json' \
--data '{
"products": array of objects,
"error":
}'
curl --request GET \
--url https://api.bitski.com/v1/products \
--header 'Content-Type: application/json' \
--data '{
"products": array of objects,
"error":
}'
Query Paramters
baseUrl
string
URL for a Bitski creator, e.g. https://www.bitski.com/@username, to filter products by.
limit
integer
Limit the number of products returned.
offset
integer
Product to start from when paginating.
saleType
string
Which type of product listing to return.
sold
boolean
Filter by if the product is sold (true) or not (false).
Response
productsRequired
array of objects
errorRequired
object
curl --request GET \
--url https://api.bitski.com/v1/products \
--header 'Content-Type: application/json' \
--data '{
"products": array of objects,
"error":
}'
curl --request GET \
--url https://api.bitski.com/v1/products \
--header 'Content-Type: application/json' \
--data '{
"products": array of objects,
"error":
}'