example-data.com
Menu
Browse docs and collections

Overview

cars-saved / #10

Activity #10

User #5 saved Car #77

7/29/2025, 1:16:15 PM

Component variants

Medium
Small

User #5 saved Car #77 · 7/29/2025, 1:16:15 PM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars-saved/10" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars-saved/10"
);
const carSaved = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/cars-saved.d.ts https://example-data.com/types/cars-saved.d.ts
import type { CarSaved } from "./types/cars-saved";

const res = await fetch(
  "https://example-data.com/api/v1/cars-saved/10"
);
const carSaved = (await res.json()) as CarSaved;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars-saved/10"
)
cars_saved = res.json()

Response

{
  "id": 10,
  "userId": 5,
  "carId": 77,
  "savedAt": "2025-07-29T13:16:15.977Z"
}