example-data.com

wishlists

wishlists

Page 4 of 10.

userId
Florencio Mohr @florencio_mohr
name
Back to School
isPublic
false
productIds
[
  156,
  170,
  188,
  37,
  25,
  31,
  164
]
createdAt
updatedAt
userId
Ryan Conroy @ryan_conroy
name
Home Decor
isPublic
false
productIds
[
  140,
  153,
  112,
  106,
  145,
  97,
  141,
  14,
  137,
  8,
  96,
  4,
  188
]
createdAt
updatedAt
userId
Ryan Conroy @ryan_conroy
name
Birthday Wishlist
isPublic
false
productIds
[
  146,
  79,
  53
]
createdAt
updatedAt
userId
Terence Lemke @terence.lemke85
name
Favourites
isPublic
false
productIds
[
  158,
  84,
  61,
  148,
  68,
  171,
  174,
  10,
  115,
  153,
  54,
  48,
  178
]
createdAt
updatedAt
userId
Candace Mueller @candace.mueller
name
Gift Ideas
isPublic
false
productIds
[
  137,
  158,
  18,
  51,
  44,
  63,
  116,
  96,
  120,
  122,
  88,
  19,
  194,
  105,
  5
]
createdAt
updatedAt
userId
Candace Mueller @candace.mueller
name
Gift Ideas
isPublic
false
productIds
[
  180,
  192,
  162,
  58,
  12
]
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": 73,
      "userId": 71,
      "name": "Back to School",
      "isPublic": false,
      "productIds": [
        156,
        170,
        188,
        37,
        25,
        31,
        164
      ],
      "createdAt": "2025-03-02T19:11:31.095Z",
      "updatedAt": "2025-06-26T03:31:33.256Z"
    },
    {
      "id": 74,
      "userId": 73,
      "name": "Home Decor",
      "isPublic": false,
      "productIds": [
        140,
        153,
        112,
        106,
        145,
        97,
        141,
        14,
        137,
        8,
        96,
        4,
        188
      ],
      "createdAt": "2025-09-11T14:32:42.824Z",
      "updatedAt": "2025-12-22T07:05:37.254Z"
    },
    {
      "id": 75,
      "userId": 73,
      "name": "Birthday Wishlist",
      "isPublic": false,
      "productIds": [
        146,
        79,
        53
      ],
      "createdAt": "2024-09-11T05:28:28.508Z",
      "updatedAt": "2024-12-23T03:22:15.882Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 239,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/wishlists?page=4",
    "next": "/api/v1/wishlists?page=5",
    "prev": "/api/v1/wishlists?page=3"
  }
}
Draftbit