example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #86

Officia curso dedecor vivo

Officia curso dedecor vivo

2008

thriller

★ 7.4 (468387)

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-shows/86" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/86"
);
const tvShow = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/86"
);
const tvShow = (await res.json()) as TvShow;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/86"
)
tv_show = res.json()

Response

{
  "id": 86,
  "title": "Officia curso dedecor vivo",
  "slug": "officia-curso-dedecor-vivo-86",
  "firstAired": "2008-05-31",
  "lastAired": null,
  "seasonCount": 9,
  "episodeCount": 73,
  "genres": [
    "thriller"
  ],
  "language": "English",
  "posterUrl": "https://picsum.photos/seed/tvshow-86/400/600",
  "rating": 7.4,
  "ratingCount": 468387,
  "status": "running",
  "createdAt": "2025-04-23T03:54:26.694Z"
}