example-data.com

wishlists

wishlists

Browse 239 wishlists records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
name
Summer Picks
isPublic
true
productIds
[
  47,
  86,
  28,
  137,
  59,
  95,
  111,
  135,
  158,
  174
]
createdAt
updatedAt
userId
Charlene Roberts @charlene_roberts
name
Holiday Gifts
isPublic
true
productIds
[
  43,
  94,
  195,
  83,
  2,
  17,
  109,
  130,
  74,
  177,
  46,
  164,
  148
]
createdAt
updatedAt
userId
Amina King @amina_king41
name
Holiday Gifts
isPublic
false
productIds
[
  151,
  176,
  13,
  19,
  36,
  67,
  47,
  37,
  105,
  22,
  43,
  53,
  85
]
createdAt
updatedAt
userId
Amina King @amina_king41
name
Home Decor
isPublic
true
productIds
[
  17,
  75,
  187,
  170,
  13,
  148,
  18,
  174,
  69,
  24,
  143
]
createdAt
updatedAt
userId
Conner Bernhard @conner.bernhard33
name
Holiday Gifts
isPublic
false
productIds
[
  66,
  156
]
createdAt
updatedAt
userId
Webster Skiles @webster_skiles39
name
Gift Ideas
isPublic
false
productIds
[
  11,
  78,
  75,
  25,
  12,
  19,
  36,
  67,
  196
]
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": 1,
      "userId": 1,
      "name": "Summer Picks",
      "isPublic": true,
      "productIds": [
        47,
        86,
        28,
        137,
        59,
        95,
        111,
        135,
        158,
        174
      ],
      "createdAt": "2026-04-04T17:14:46.340Z",
      "updatedAt": "2026-04-13T03:20:44.226Z"
    },
    {
      "id": 2,
      "userId": 1,
      "name": "Holiday Gifts",
      "isPublic": true,
      "productIds": [
        43,
        94,
        195,
        83,
        2,
        17,
        109,
        130,
        74,
        177,
        46,
        164,
        148
      ],
      "createdAt": "2024-12-26T13:35:31.507Z",
      "updatedAt": "2025-08-17T09:30:54.911Z"
    },
    {
      "id": 3,
      "userId": 2,
      "name": "Holiday Gifts",
      "isPublic": false,
      "productIds": [
        151,
        176,
        13,
        19,
        36,
        67,
        47,
        37,
        105,
        22,
        43,
        53,
        85
      ],
      "createdAt": "2024-12-16T18:38:21.089Z",
      "updatedAt": "2026-01-19T07:31:44.120Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=1",
    "first": "/api/v1/wishlists?page=1",
    "last": "/api/v1/wishlists?page=10",
    "next": "/api/v1/wishlists?page=2",
    "prev": null
  }
}

View full response →

Draftbit