example-data.com

itineraries / #10

userId
Stephan Heller @stephan.heller
title
Grand Escape
slug
grand-escape-10
description
Utor corrumpo maiores cotidie placeat.
startDate
2025-08-03
endDate
2025-08-24
destinationSlugs
sydney-7sengerboro-63
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/itineraries/10"
)
itinerarie = res.json()
{
  "id": 10,
  "userId": 82,
  "title": "Grand Escape",
  "slug": "grand-escape-10",
  "description": "Utor corrumpo maiores cotidie placeat.",
  "startDate": "2025-08-03",
  "endDate": "2025-08-24",
  "destinationSlugs": [
    "sydney-7",
    "sengerboro-63"
  ],
  "createdAt": "2026-02-17T02:52:59.098Z",
  "updatedAt": "2026-04-11T21:32:32.099Z"
}
Draftbit