example-data.com

itineraries / #40

userId
Rubye Emmerich @rubye.emmerich
title
Weekend Escape
slug
weekend-escape-40
description
Capitulus thema aer. Vere sufficio deporto aptus.
startDate
2026-06-18
endDate
2026-06-22
destinationSlugs
vienna-28andersonton-62bangkok-23lake-deon-71raleighbury-47
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/itineraries/40"
)
itinerarie = res.json()
{
  "id": 40,
  "userId": 225,
  "title": "Weekend Escape",
  "slug": "weekend-escape-40",
  "description": "Capitulus thema aer. Vere sufficio deporto aptus.",
  "startDate": "2026-06-18",
  "endDate": "2026-06-22",
  "destinationSlugs": [
    "vienna-28",
    "andersonton-62",
    "bangkok-23",
    "lake-deon-71",
    "raleighbury-47"
  ],
  "createdAt": "2024-10-02T02:46:14.744Z",
  "updatedAt": "2025-08-21T11:40:55.493Z"
}
Draftbit