List wishlists for authenticated user
Returns a paginated list of wishlists for the authenticated user. The total_items count reflects the filtered results (if applied).
/api/v1/{app_id}/wishlists- API
- Auth
- OpenAPI
- auth-api
- Updated
- Apr 26, 2026
auth-api:GET:/api/v1/{app_id}/wishlists
Returns a paginated list of wishlists for the authenticated user. The total_items count reflects the filtered results (if applied).
API ownership
- API family: Auth API
- Best for: Customer identity, session, token, cart, and wishlist flows.
- Do not use from: Merchant admin data syncs or public catalog rendering.
- Guide route: /apis/auth/latest
The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.
Operation
- Method:
GET - Path:
/api/v1/\{app_id\}/wishlists - Summary: List wishlists for authenticated user
- Description: Returns a paginated list of wishlists for the authenticated user. The total_items count reflects the filtered results (if applied).
- OpenAPI contract: auth-api
- Operation ID: Not documented in the OpenAPI contract.
Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| app_id | path | Yes | string | UUID of the app |
| name | query | No | string | Filter wishlists by name |
| page | query | No | integer | Page number (default: 1, minimum: 1) |
| per_page | query | No | integer | Number of items per page (default: 20, minimum: 1, maximum: 100) |
Request body
Not documented in the OpenAPI contract.
Responses
| Status | Description | Content |
|---|---|---|
| 200 | Paginated list of wishlists with metadata | application/json (object) |
| 400 | Invalid request parameters | application/json (object) |
| 401 | Unauthorized | application/json (object) |
| 500 | Internal server error | application/json (object) |
200 - object
Paginated Wishlist List
| Property | Type | Required | Details |
|---|---|---|---|
items | object[] | No | - |
page | integer | No | - |
page_size | integer | No | - |
total_items | integer | No | - |
total_pages | integer | No | - |
Wishlist
| Property | Type | Required | Details |
|---|---|---|---|
created_at | string | No | - |
id | string | No | - |
is_default | boolean | No | - |
item_count | integer | No | - |
name | string | No | - |
updated_at | string | No | - |
user_id | string | No | - |
Generated example (synthetic):
{
"items": [
{
"created_at": "string",
"id": "string",
"is_default": false,
"item_count": 0,
"name": "string",
"updated_at": "string",
"user_id": "string"
}
],
"page": 0,
"page_size": 0,
"total_items": 0,
"total_pages": 0
}400 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}401 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}500 - object
Error Message
| Property | Type | Required | Details |
|---|---|---|---|
details | string[] | No | - |
message | string | No | - |
success | boolean | No | - |
Generated example (synthetic):
{
"details": [
"string"
],
"message": "string",
"success": false
}Contract identity
Use these fields to confirm you are implementing the intended endpoint contract.
- API family: Auth API
- Method:
GET - Path:
/api/v1/\{app_id\}/wishlists - Operation ID: Not documented in the OpenAPI contract.
- OpenAPI tag: Wishlist
- OpenAPI summary: List wishlists for authenticated user