ResourcesGroups

List specific product within group

This endpoint allows you to retrieve a specific product from within a group.

This endpoint allows you to retrieve a specific product from within a group.

GET
/v2/groups/{group}/products/{product}

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

group*integer

The group path parameter.

product*integer

The product path parameter.

Response Body

application/json

curl -X GET "https://sell.app/api/v2/groups/0/products/0"
{
  "data": {
    "id": 1,
    "title": "This will make me rich!",
    "slug": "serial",
    "description": "<p>I am sure of it, Pinky.</p>",
    "images": [],
    "order": 1,
    "visibility": "PUBLIC",
    "delivery_text": null,
    "additional_information": [],
    "warranty": {
      "text": "",
      "time": null,
      "preferredUnit": "MINUTES"
    },
    "other_settings": [],
    "deleted_at": null,
    "created_at": "2022-12-12T12:12:12.000000Z",
    "updated_at": "2022-12-12T12:12:12.000000Z",
    "store_id": 1,
    "category_id": null,
    "section_id": null,
    "section_order": null,
    "is_discoverable": 1,
    "pivot": {
      "group_id": 1,
      "listing_id": 1,
      "order": 1
    }
  }
}