example-data.com

wishlists

wishlists

Page 6 of 10.

userId
Daren Lockman @daren_lockman67
name
Favourites
isPublic
true
productIds
[
  113,
  109,
  57,
  61,
  101,
  125,
  71,
  34,
  110
]
createdAt
updatedAt
userId
Leora Doyle @leora_doyle
name
Summer Picks
isPublic
false
productIds
[
  193,
  58,
  25
]
createdAt
updatedAt
userId
Jennifer Hoeger @jennifer.hoeger
name
Birthday Wishlist
isPublic
false
productIds
[
  104,
  152,
  39,
  148,
  87,
  142,
  90
]
createdAt
updatedAt
userId
Lennie Dickinson @lennie_dickinson8
name
Want Later
isPublic
false
productIds
[
  121,
  171
]
createdAt
updatedAt
userId
Nikko Kuhlman @nikko_kuhlman
name
Want Later
isPublic
false
productIds
[
  56,
  171,
  115,
  36,
  185,
  58,
  139
]
createdAt
updatedAt
userId
Nikko Kuhlman @nikko_kuhlman
name
Favourites
isPublic
false
productIds
[
  111,
  125,
  137,
  141,
  155,
  61,
  174,
  99,
  173,
  60,
  88,
  139,
  45
]
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/wishlists?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists?limit=25"
);
const { data, meta } = await res.json();
import type { Wishlist, ListEnvelope } from "https://example-data.com/types/wishlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/wishlists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Wishlist>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "userId": 116,
      "name": "Favourites",
      "isPublic": true,
      "productIds": [
        113,
        109,
        57,
        61,
        101,
        125,
        71,
        34,
        110
      ],
      "createdAt": "2025-10-17T14:43:31.266Z",
      "updatedAt": "2026-04-18T12:56:02.423Z"
    },
    {
      "id": 122,
      "userId": 117,
      "name": "Summer Picks",
      "isPublic": false,
      "productIds": [
        193,
        58,
        25
      ],
      "createdAt": "2025-12-13T20:59:50.086Z",
      "updatedAt": "2025-12-17T11:02:29.397Z"
    },
    {
      "id": 123,
      "userId": 119,
      "name": "Birthday Wishlist",
      "isPublic": false,
      "productIds": [
        104,
        152,
        39,
        148,
        87,
        142,
        90
      ],
      "createdAt": "2026-03-26T20:10:01.431Z",
      "updatedAt": "2026-04-09T00:54:28.248Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=6",
    "next": "/api/v1/wishlists?page=7",
    "prev": "/api/v1/wishlists?page=5"
  }
}
Draftbit