example-data.com
Menu
Browse docs and collections

Overview

itineraries / #175

Solo Escape

userId
Cassidy Boehm @cassidy_boehm22
title
Solo Escape
slug
solo-escape-175
description
Teneo tero spes defendo annus.
startDate
2026-07-20
endDate
2026-08-04
destinationSlugs
cronaworth-35 new-york-17 new-benmouth-44 abilene-42
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/itineraries/175" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/itineraries/175"
);
const itinerary = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/itineraries.d.ts https://example-data.com/types/itineraries.d.ts
import type { Itinerary } from "./types/itineraries";

const res = await fetch(
  "https://example-data.com/api/v1/itineraries/175"
);
const itinerary = (await res.json()) as Itinerary;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/itineraries/175"
)
itinerarie = res.json()

Response

{
  "id": 175,
  "userId": 204,
  "title": "Solo Escape",
  "slug": "solo-escape-175",
  "description": "Teneo tero spes defendo annus.",
  "startDate": "2026-07-20",
  "endDate": "2026-08-04",
  "destinationSlugs": [
    "cronaworth-35",
    "new-york-17",
    "new-benmouth-44",
    "abilene-42"
  ],
  "createdAt": "2026-01-11T01:40:38.312Z",
  "updatedAt": "2026-04-26T11:16:10.493Z"
}