example-data.com

itineraries / #188

userId
Mateo Gerlach @mateo.gerlach
title
Dream Tour
slug
dream-tour-188
description
Canis asporto labore caput solitudo. Tyrannus clam labore tonsor carbo deporto.
startDate
2025-07-05
endDate
2025-07-08
destinationSlugs
hackettville-30heidenreichshire-76san-francisco-19
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/itineraries/188"
)
itinerarie = res.json()
{
  "id": 188,
  "userId": 81,
  "title": "Dream Tour",
  "slug": "dream-tour-188",
  "description": "Canis asporto labore caput solitudo. Tyrannus clam labore tonsor carbo deporto.",
  "startDate": "2025-07-05",
  "endDate": "2025-07-08",
  "destinationSlugs": [
    "hackettville-30",
    "heidenreichshire-76",
    "san-francisco-19"
  ],
  "createdAt": "2025-11-12T12:23:22.081Z",
  "updatedAt": "2026-03-15T00:50:41.571Z"
}
Draftbit