example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #34

Velit arca spargo corporis

Velit arca spargo corporis

2000

action

★ 5.3 (265594)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/34"
);
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/34"
);
const tvShow = (await res.json()) as TvShow;

Python example

import requests

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

Response

{
  "id": 34,
  "title": "Velit arca spargo corporis",
  "slug": "velit-arca-spargo-corporis-34",
  "firstAired": "2000-08-16",
  "lastAired": "2021-04-06",
  "seasonCount": 2,
  "episodeCount": 25,
  "genres": [
    "action"
  ],
  "language": "Portuguese",
  "posterUrl": "https://picsum.photos/seed/tvshow-34/400/600",
  "rating": 5.3,
  "ratingCount": 265594,
  "status": "ended",
  "createdAt": "2024-06-21T13:09:47.812Z"
}