example-data.com

itineraries / #8

userId
Bradford Doyle @bradford.doyle42
title
Weekend Escape
slug
weekend-escape-8
description
Repellat libero comedo cohaero addo sordeo.
startDate
2027-04-18
endDate
2027-05-05
destinationSlugs
goyettemouth-79toronto-15hayleeside-48andersonton-62
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/itineraries/8"
)
itinerarie = res.json()
{
  "id": 8,
  "userId": 79,
  "title": "Weekend Escape",
  "slug": "weekend-escape-8",
  "description": "Repellat libero comedo cohaero addo sordeo.",
  "startDate": "2027-04-18",
  "endDate": "2027-05-05",
  "destinationSlugs": [
    "goyettemouth-79",
    "toronto-15",
    "hayleeside-48",
    "andersonton-62"
  ],
  "createdAt": "2025-07-07T06:06:03.590Z",
  "updatedAt": "2026-03-30T05:38:48.406Z"
}
Draftbit