Autochess VNG API

Free to Use Varies (check documentation)

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

vehicle make and model
year and specifications
fuel economy
VIN decode data
Use case: Integrate rest api for autochess vng data into web and mobile applications

Example Response

JSON 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

404 Not Found The endpoint path is incorrect
Refer to the GitHub README at the API URL for the complete list of valid endpoints
Slow cold start response The API may be hosted on a free serverless tier that sleeps when idle
Retry the request after a few seconds—the first request after idle wakes the server
CORS error in browser Browser blocks cross-origin requests if CORS headers are absent
Test using curl or Postman first; if CORS is needed in the browser, proxy through your own backend

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 20/20
🔒 Security 15/15
🛠 Developer XP 20/20
✓ Reliability 7/15
Response Time 62ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Games & Comics
Difficulty Beginner
Verified: 2026-04-07

Similar APIs

View All →