curl -sS \
"https://example-data.com/api/v1/jokes/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/jokes/3"
);
const joke = await res.json();import type { Joke } from "https://example-data.com/types/jokes.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/jokes/3"
);
const joke = (await res.json()) as Joke;import requests
res = requests.get(
"https://example-data.com/api/v1/jokes/3"
)
joke = res.json() {
"id": 3,
"setup": "Why did the scarecrow win an award?",
"punchline": "Because he was outstanding in his field.",
"category": "pun",
"rating": 4.8,
"createdAt": "2024-06-15T23:09:14.901Z"
}