Is anybody having problems with the rawg.io website? It’s returning a host error and not displaying the game list contents on my project.
I can’t reach the site or the api
Site is temporarily down
i had the same problem butit’s now available. you can reach the website and the api … try it now
Try multiple times. It works.
If Rawg is not accessible, you can try other video game database APIs. MobyGames works well. Visit the API page through API Documentation - MobyGames. Follow the instructions and get started.
You might only need take care to adjust your app’s interfaces to match MobyGames’s database structure. The following code might help too:
export interface Game {
game_id: number;
title: string;
sample_cover: GameCover;
}
interface GameCover {
image: string;
}
interface FetchGamesResponse {
games: Game;
Make sure you see the documentation of the database provided on the site.