ResourcesCredits
List credits products
List dedicated credits products and their default variants.
Authorization
bearerAuth storeAuth AuthorizationBearer <token>
Provide your SellApp API key as a bearer token.
In: header
X-STORE<token>
Select the SellApp store for this API request.
In: header
Query Parameters
limit?integer
Number of items to return per page.
Default
15Range
1 <= value <= 100page?integer
Page number to return.
Default
1Range
1 <= valuepagination?boolean
Set to false to return at most 100 matching items in one data array without pagination links or metadata.
Default
trueResponse Body
application/json
application/json
application/json
application/json
curl -X GET "https://sell.app/api/v2/credit-products"{
"data": [
{
"id": 0,
"store_id": 0,
"title": "string",
"slug": "string",
"description": "string",
"visibility": "PUBLIC",
"type": "credits",
"is_draft": true,
"is_discoverable": true,
"section_id": 0,
"default_variant": {
"id": 0,
"price_cents": 0,
"currency": "string",
"minimum_purchase_quantity": 1,
"maximum_purchase_quantity": 0,
"quantity_increment": 1,
"stock": 0,
"payment_methods": [
"string"
],
"rate_tiers": [
{
"min_quantity": 100,
"max_quantity": 999,
"unit_price": "0.5000"
}
]
},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z"
}
],
"links": {
"first": "https://sell.app/api/v1/blacklists?page=1",
"last": "https://sell.app/api/v1/blacklists?page=4",
"prev": null,
"next": "https://sell.app/api/v1/blacklists?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 4,
"links": [
{
"url": "string",
"label": "string",
"active": true
}
],
"path": "https://sell.app/api/v1/blacklists",
"per_page": 15,
"to": 15,
"total": 57
}
}{
"message": "Unauthenticated."
}{
"message": "This action is unauthorized."
}{
"message": "The given data was invalid.",
"errors": {
"data": [
"The data field is required."
]
}
}