Autochess VNG API
Overview
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races. It requires no authentication and returns JSON—making it straightforward to integrate. Use it to build tier lists, stat trackers, or team composition tools for Autochess players.
Beginner Tip
No authentication is needed. Browse the GitHub repository first to see all available routes since there is no interactive documentation—endpoints follow a simple REST pattern like /api/heroes.
Available Data
Example Response
{
"make": "Toyota",
"model": "Camry",
"year": 2025,
"engine": "2.5L 4-cylinder",
"fuel_economy": {
"city_mpg": 28,
"highway_mpg": 39
},
"msrp": 28400
} Field Reference
id Unique identifier for the hero name Hero name in the game cost Gold cost to recruit the hero race Hero's race affiliation which triggers synergy bonuses class Hero's class role such as Warrior, Mage, or Assassin Implementation Example
const url = "https://github.com/didadadida93/autochess-vng-api";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Age of Empires II
Age of Empires II provides programmatic access to get information about age of empires ii resources via REST API.
AmiiboAPI
AmiiboAPI provides programmatic access to nintendo amiibo information via REST API.
Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.
Board Game Geek
⭐ Beginner's PickBoardGameGeek's XML API 2 lets you access a massive database of over 100,000 board games, RPGs, and video games including ratings, reviews, and user collections.