Storefront
Get hero slides
GET
/api/v1/storefront/heroReturns the active hero carousel slides shown on the storefront home page, ordered by position.
No authentication required
Public
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/storefront/hero200Example response
{
"success": true,
"data": [
{
"id": "slide_1a2b3c",
"title": "Soldes de rentrée",
"subtitle": "Jusqu'à -30% sur une sélection de produits",
"imageUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/storefront/hero1.jpg",
"linkUrl": "/products?category=electronics",
"position": 1,
"isActive": true,
"createdAt": "2026-01-10T08:00:00.000Z"
}
]
}