example-data.com

itineraries / #20

userId
Wendy Borer @wendy_borer
title
Classic Voyage
slug
classic-voyage-20
description
Arbustum tepesco cribro curso.
startDate
2027-02-04
endDate
2027-02-18
destinationSlugs
fort-elizabeth-53north-richland-hills-73hackettville-30mayafurt-45
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/itineraries/20" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/itineraries/20"
);
const itinerarie = await res.json();
import type { Itinerarie } from "https://example-data.com/types/itineraries.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/itineraries/20"
);
const itinerarie = (await res.json()) as Itinerarie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/itineraries/20"
)
itinerarie = res.json()
{
  "id": 20,
  "userId": 141,
  "title": "Classic Voyage",
  "slug": "classic-voyage-20",
  "description": "Arbustum tepesco cribro curso.",
  "startDate": "2027-02-04",
  "endDate": "2027-02-18",
  "destinationSlugs": [
    "fort-elizabeth-53",
    "north-richland-hills-73",
    "hackettville-30",
    "mayafurt-45"
  ],
  "createdAt": "2026-02-22T10:57:09.151Z",
  "updatedAt": "2026-04-21T15:48:33.152Z"
}
Draftbit