example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #98

Eius sollicito

Eius sollicito

2019

actioncomedydrama

★ 0.7 (381397)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 98,
  "title": "Eius sollicito",
  "slug": "eius-sollicito-98",
  "firstAired": "2019-11-13",
  "lastAired": "2026-03-14",
  "seasonCount": 7,
  "episodeCount": 108,
  "genres": [
    "action",
    "comedy",
    "drama"
  ],
  "language": "Spanish",
  "posterUrl": "https://picsum.photos/seed/tvshow-98/400/600",
  "rating": 0.7,
  "ratingCount": 381397,
  "status": "ended",
  "createdAt": "2025-04-30T04:18:20.621Z"
}