SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Storefront

Get hero slides

GET/api/v1/storefront/hero

Returns 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/hero
200Example 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"
    }
  ]
}