#search #api #long #website #com #beat #detail

bin+lib howlongtobeat

Simple api for https://howlongtobeat.com

2 releases

0.5.2 Dec 4, 2022
0.5.1 Dec 3, 2022
0.5.0 Sep 16, 2022
0.4.0 Aug 22, 2022
0.1.0 Aug 22, 2022

#339 in Games

Custom license

14KB
123 lines

Howlongtobeat API

About & Credits

How long to beat provides information and data about games and how long it will take to finish them.

This library is a simple wrapper api to fetch data from How long to beat (search and detail). It is an awesome website and a great service, also heavily living from community data. Please check the website and support if you like what they are doing.

Usage

Install the dependency

howlongtobeat = "0.5.2"

Use in code

Add imports

use howlongtobeat::search;

Searching for a game

let games_found = search("Elden Ring".to_string());
println!("{:#?}", games_found);
  • Search response example:
[
    Game {
        image: "https://howlongtobeat.com/games/68151_Elden_Ring.jpg",
        title: "Elden Ring",
        main: "52h 39m",
        extra: "98h 11m",
        completionist: "131h 19m",
    },
    Game {
        image: "https://howlongtobeat.com/games/108888_Elden_Ring_GB.jpg",
        title: "Elden Ring GB",
        main: "0h 21m",
        extra: "0h 29m",
        completionist: "0h 0m",
    },
]

License

DO WHAT THE FUCK YOU WANT

Dependencies

~10–24MB
~363K SLoC