consumet / consumet.ts

Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
https://consumet.org/extensions/list/
GNU General Public License v3.0
384 stars 208 forks source link

API host is possibly down #461

Closed dhelbegor closed 5 months ago

dhelbegor commented 5 months ago

Describe the bug

trying to acess dramacool feature on api.consumet.org but I'm receiving error 522.

Steps to reproduce

import requests

# Using the example query "vincenzo", and looking at the 2nd page of results.
url = "https://api.consumet.org/movies/dramacool/vincenzo"
response = requests.get(url)

if response.status_code == 200:
  data = response.json()
  print(data)
else:
  print(f'error trying to fetch data from API. status: {response.status_code}')

Expected behavior

receive a status 200 with the respective payload.

Actual behavior

receive status code 522 via script/terminal.

the same happens when trying to acess via browser too.

image

Additional context

No response