SwiftGoma.SwiftGoma

Search endpoints

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

Favorites

List favorite IDs

GET/api/v1/favorites/ids

Returns just the product IDs the user has favorited — a lighter call for populating a heart/favorite icon state across a product listing page.

Requires Authorization
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/favorites/ids \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": [
    "prod_7c8d9e",
    "prod_1a2b3c"
  ]
}