example-data.com

wishlists

wishlists

Page 7 of 10.

userId
Rickie Sporer @rickie.sporer50
name
Back to School
isPublic
false
productIds
[
  139,
  106,
  169,
  31,
  25,
  103,
  98,
  19,
  171,
  101,
  76,
  16,
  116,
  22,
  118
]
createdAt
updatedAt
userId
Rickie Sporer @rickie.sporer50
name
Tech Gadgets
isPublic
true
productIds
[
  116,
  153,
  168,
  167,
  33,
  178,
  90
]
createdAt
updatedAt
userId
Jonathan Howe @jonathan_howe77
name
Holiday Gifts
isPublic
true
productIds
[
  59,
  193,
  50,
  9,
  155,
  99
]
createdAt
updatedAt
userId
Jonathan Howe @jonathan_howe77
name
Want Later
isPublic
false
productIds
[
  58,
  196,
  74,
  98,
  160,
  121,
  137,
  157,
  171,
  33,
  45,
  105,
  175
]
createdAt
updatedAt
userId
Wiley Rodriguez @wiley.rodriguez19
name
Favourites
isPublic
false
productIds
[
  34,
  6,
  79
]
createdAt
updatedAt
userId
Wiley Rodriguez @wiley.rodriguez19
name
Back to School
isPublic
true
productIds
[
  124,
  149,
  169,
  29,
  139,
  80,
  146,
  94,
  74,
  140
]
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": 145,
      "userId": 149,
      "name": "Back to School",
      "isPublic": false,
      "productIds": [
        139,
        106,
        169,
        31,
        25,
        103,
        98,
        19,
        171,
        101,
        76,
        16,
        116,
        22,
        118
      ],
      "createdAt": "2024-11-20T08:24:14.610Z",
      "updatedAt": "2025-12-06T21:56:11.971Z"
    },
    {
      "id": 146,
      "userId": 149,
      "name": "Tech Gadgets",
      "isPublic": true,
      "productIds": [
        116,
        153,
        168,
        167,
        33,
        178,
        90
      ],
      "createdAt": "2025-06-14T23:33:10.587Z",
      "updatedAt": "2025-10-04T06:41:53.888Z"
    },
    {
      "id": 147,
      "userId": 150,
      "name": "Holiday Gifts",
      "isPublic": true,
      "productIds": [
        59,
        193,
        50,
        9,
        155,
        99
      ],
      "createdAt": "2026-05-13T14:44:26.976Z",
      "updatedAt": "2026-05-21T10:13:10.077Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=7",
    "next": "/api/v1/wishlists?page=8",
    "prev": "/api/v1/wishlists?page=6"
  }
}
Draftbit