example-data.com

wishlists

wishlists

Page 3 of 10.

userId
Myrtie Daniel @myrtie_daniel33
name
Summer Picks
isPublic
true
productIds
[
  184,
  9,
  50,
  158,
  176,
  169,
  81,
  10,
  167,
  24
]
createdAt
updatedAt
userId
Myrtie Daniel @myrtie_daniel33
name
Birthday Wishlist
isPublic
true
productIds
[
  174,
  114,
  13,
  146,
  65,
  23,
  151,
  67,
  187,
  129,
  61,
  64,
  123,
  39,
  6
]
createdAt
updatedAt
userId
Lacy Gusikowski @lacy.gusikowski
name
Holiday Gifts
isPublic
false
productIds
[
  108,
  148,
  86,
  83,
  173
]
createdAt
updatedAt
userId
Lacy Gusikowski @lacy.gusikowski
name
Back to School
isPublic
false
productIds
[
  22,
  13
]
createdAt
updatedAt
userId
Maymie Boehm @maymie.boehm90
name
Holiday Gifts
isPublic
false
productIds
[
  81,
  71,
  112,
  63,
  15,
  99,
  97,
  43,
  106,
  147,
  17,
  72
]
createdAt
updatedAt
userId
Maymie Boehm @maymie.boehm90
name
Favourites
isPublic
false
productIds
[
  151,
  18,
  14,
  132,
  118,
  110,
  142,
  69,
  195,
  74,
  97
]
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": 49,
      "userId": 45,
      "name": "Summer Picks",
      "isPublic": true,
      "productIds": [
        184,
        9,
        50,
        158,
        176,
        169,
        81,
        10,
        167,
        24
      ],
      "createdAt": "2025-08-14T19:26:38.460Z",
      "updatedAt": "2026-02-01T23:34:04.112Z"
    },
    {
      "id": 50,
      "userId": 45,
      "name": "Birthday Wishlist",
      "isPublic": true,
      "productIds": [
        174,
        114,
        13,
        146,
        65,
        23,
        151,
        67,
        187,
        129,
        61,
        64,
        123,
        39,
        6
      ],
      "createdAt": "2025-04-08T06:04:02.944Z",
      "updatedAt": "2025-08-13T01:46:37.788Z"
    },
    {
      "id": 51,
      "userId": 47,
      "name": "Holiday Gifts",
      "isPublic": false,
      "productIds": [
        108,
        148,
        86,
        83,
        173
      ],
      "createdAt": "2024-07-13T00:51:08.828Z",
      "updatedAt": "2025-04-01T10:49:07.721Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=3",
    "next": "/api/v1/wishlists?page=4",
    "prev": "/api/v1/wishlists?page=2"
  }
}
Draftbit