Back to School
- userId
-
Margaretta Barrows @margaretta_barrows41
- name
- Back to School
- isPublic
- false
- productIds
-
[ 42, 113, 101, 182, 5, 177, 160, 55, 59, 84, 93, 167, 7 ] - createdAt
- updatedAt
Overview
wishlists / #39
[
42,
113,
101,
182,
5,
177,
160,
55,
59,
84,
93,
167,
7
]
Back to School
#39
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/39" ); const wishlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/wishlists.d.ts https://example-data.com/types/wishlists.d.ts
import type { Wishlist } from "./types/wishlists";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/39"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/39"
)
wishlist = res.json() Response
{
"id": 39,
"userId": 39,
"name": "Back to School",
"isPublic": false,
"productIds": [
42,
113,
101,
182,
5,
177,
160,
55,
59,
84,
93,
167,
7
],
"createdAt": "2025-02-03T10:54:48.104Z",
"updatedAt": "2025-12-20T17:30:10.389Z"
}