example-data.com

itineraries / #99

userId
Jensen Bashirian @jensen_bashirian
title
Luxury Tour
slug
luxury-tour-99
description
Inflammatio virgo ceno tabella. Bene ocer at ambitus patruus adiuvo tollo terra.
startDate
2027-04-18
endDate
2027-04-25
destinationSlugs
toronto-15hackettville-30
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/itineraries/99" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/itineraries/99"
);
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/99"
);
const itinerarie = (await res.json()) as Itinerarie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/itineraries/99"
)
itinerarie = res.json()
{
  "id": 99,
  "userId": 29,
  "title": "Luxury Tour",
  "slug": "luxury-tour-99",
  "description": "Inflammatio virgo ceno tabella. Bene ocer at ambitus patruus adiuvo tollo terra.",
  "startDate": "2027-04-18",
  "endDate": "2027-04-25",
  "destinationSlugs": [
    "toronto-15",
    "hackettville-30"
  ],
  "createdAt": "2026-01-05T02:46:00.262Z",
  "updatedAt": "2026-01-17T03:34:23.278Z"
}
Draftbit