GET
/
cms
/
collections
/
{collectionName}
Collection
curl --request GET \
  --url https://api.marzipan.co/v1/cms/collections/{collectionName} \
  --header 'Authorization: Bearer <token>'
{
  "id": "30ce94bf-230e-460e-97f8-c5807515c5d0",
  "name": "FAQs",
  "slug": "faqs",
  "items": [
    {
      "id": "cbcb30f9-e88b-475b-a458-47380cdb6b10",
      "name": "How do wine subscriptions work?",
      "content": "Our wine subscriptions deliver carefully selected wines to your door on a regular basis. You can choose monthly, quarterly, or bi-annual deliveries. Each shipment includes tasting notes and information about the vineyard and winemaker.",
      "order": 1,
      "created_at": "2025-08-05T15:44:33.000000Z",
      "updated_at": "2025-08-05T15:44:33.000000Z"
    },
    {
      "id": "11faa766-21bc-4cb0-989d-7abb93a2a3e0",
      "name": "Can I skip a delivery?",
      "content": "Yes, you can skip any delivery up to 7 days before your next shipment date. Simply log into your account and manage your subscription settings. You can also pause your subscription for up to 3 months.",
      "order": 2,
      "created_at": "2025-08-05T15:44:33.000000Z",
      "updated_at": "2025-08-05T15:44:33.000000Z"
    },
    {
      "id": "bb28663d-d37b-469c-bad2-235c5a86d6a7",
      "name": "What if I do not like a wine?",
      "content": "We offer a satisfaction guarantee. If you are not happy with any wine in your shipment, contact us within 30 days and we will provide a credit or replacement. We want you to love every bottle!",
      "order": 3,
      "created_at": "2025-08-05T15:44:33.000000Z",
      "updated_at": "2025-08-05T15:44:33.000000Z"
    },
    {
      "id": "18e6da9f-86a4-43e1-8667-8a19aa5057f6",
      "name": "Do you ship internationally?",
      "content": "Currently we ship within the UK only. We are working on expanding to EU countries in 2025. UK shipping is free on all subscription orders and orders over £50.",
      "order": 4,
      "created_at": "2025-08-05T15:44:33.000000Z",
      "updated_at": "2025-08-05T15:44:33.000000Z"
    },
    {
      "id": "e58aef3b-fcea-4444-88b6-441ee059263f",
      "name": "How do I cancel my subscription?",
      "content": "You can cancel your subscription at any time through your account settings. There are no cancellation fees or commitments. If you cancel before your next billing date, you won't be charged for future shipments.",
      "order": 5,
      "created_at": "2025-08-05T15:44:33.000000Z",
      "updated_at": "2025-08-05T15:44:33.000000Z"
    }
  ],
  "created_at": "2025-08-05T15:44:33.000000Z",
  "updated_at": "2025-08-05T15:44:33.000000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your API token.

Path Parameters

collectionName
string
required

The unique name identifier for the collection

Response

200
application/json

CMS collection with items

The response is of type object.