cs2api repo contains database filled with all the information about skins from cs2 (game). all that is accessible with Api which is written with Go + Gin framework. for DB Api has PostgreSql. Api can work for any type of project which needs db + api to serve info about thousands of skins. Compatible with any frontend framework and SSR apps (api can serve html along with json but it's still raw and under dev)
cs2api database is filled with real data from real sites. api uses scraping tool (still in development) which will be released once it's 100% production ready, basically data on that api is the same you see on major sites. scraper automatically updates prices of that data (you will be able to specify frequency)
Total skins: 683
Last updated prices & collections: 23.5.25
Additional features which you can enable (disabled by default): PgAdmin, DB Migrations, JWT, Rate limiting
{
"id": 1,
"name": "test_name",
"weapon": "AK-47"
"rarity": "covert",
"collection": "bravo",
"price": "$100-$150",
"stattrack_price": "$500-$750",
"url": "example.com/skin_image_url"
}
git clone https://github.com/cs2api/cs2api.git
cp .example.env .env
docker compose up --build