Skip to content

vladflore/isitairedyet

Repository files navigation

isItAiredYet

Search for Picard restricted to series type.

curl -X 'GET' \
  'https://api4.thetvdb.com/v4/search?query=Picard&type=series' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer xxx'

Get next aired episode for series

curl -X 'GET' \
  'https://api4.thetvdb.com/v4/series/364093' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer xxx' | jq '.data.nextAired'

Get token

curl -X 'POST' \
  'https://api4.thetvdb.com/v4/login' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "apikey": "",
  "pin": ""
}'

Start a local server

python3 -m http.server

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published