Favorites
List favorite IDs
GET
/api/v1/favorites/idsReturns 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"
]
}