Public Collections

Shareable read-only collection endpoints

Retrieve public collection

get

Fetches a publicly shared collection using its slug.

Path parameters
slugstringRequired

Public collection slug

Responses
200

Public collection detail

application/json
get
/wishlists/user-collection/{slug}/
GET /wishlists/user-collection/{slug}/ HTTP/1.1
Host: sandbox.akinon.com
Accept: */*
{
  "pk": 12,
  "name": "Summer Essentials",
  "status": "private",
  "slug": "summer-essentials",
  "items": [
    {
      "pk": 345,
      "product": {
        "pk": 221133,
        "name": "Smart Watch X",
        "sku": "SW-X-BLACK",
        "base_code": "SWX",
        "price": "1999.00",
        "retail_price": "2499.00",
        "currency_type": "TRY",
        "in_stock": true,
        "stock": 12,
        "absolute_url": "https://sandbox.akinon.com/product/smart-watch-x/",
        "productimage_set": [
          {
            "pk": 4455,
            "image": "https://cdn.akinon.com/images/products/smart-watch-x.png",
            "order": null,
            "specialimage_set": [
              {
                "ANY_ADDITIONAL_PROPERTY": "anything"
              }
            ]
          }
        ],
        "productvideo_set": [
          {
            "pk": 1,
            "video": "https://example.com"
          }
        ],
        "is_ready_to_basket": true,
        "extra_data": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "basket_offers": [
          {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          }
        ]
      },
      "created_date": "2025-10-30T09:45:00Z",
      "note": "Remember to check new colours"
    }
  ],
  "public_url": "https://sandbox.akinon.com/wishlists/user-collection/summer-essentials/"
}

Last updated

Was this helpful?