Back to School
- userId
-
Consuelo Borer @consuelo.borer
- name
- Back to School
- isPublic
- false
- productIds
-
[ 100, 133, 150, 191, 149, 101, 21, 122, 130, 179 ] - createdAt
- updatedAt
Overview
wishlists / #190
[
100,
133,
150,
191,
149,
101,
21,
122,
130,
179
]
Back to School
#190
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/190" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/190"
);
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/190"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/190"
)
wishlist = res.json()
Response
{
"id": 190,
"userId": 200,
"name": "Back to School",
"isPublic": false,
"productIds": [
100,
133,
150,
191,
149,
101,
21,
122,
130,
179
],
"createdAt": "2026-03-11T19:56:56.894Z",
"updatedAt": "2026-04-09T23:01:07.914Z"
}