example-data.com
Menu
Browse docs and collections

Overview

wishlists / #79

Tech Gadgets

userId
Marilou Douglas @marilou.douglas
name
Tech Gadgets
isPublic
true
productIds
              [
  182,
  168,
  167,
  83,
  89,
  87,
  186,
  20,
  132,
  3,
  154,
  94,
  62,
  90,
  102
]
            
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/wishlists/79" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/wishlists/79"
);
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/79"
);
const wishlist = (await res.json()) as Wishlist;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/79"
)
wishlist = res.json()

Response

{
  "id": 79,
  "userId": 78,
  "name": "Tech Gadgets",
  "isPublic": true,
  "productIds": [
    182,
    168,
    167,
    83,
    89,
    87,
    186,
    20,
    132,
    3,
    154,
    94,
    62,
    90,
    102
  ],
  "createdAt": "2025-09-17T16:23:17.637Z",
  "updatedAt": "2026-04-27T21:36:05.489Z"
}