Warface (non-official) API

Free to Use Varies (check documentation)

Overview

This unofficial Warface API proxy provides enhanced player statistics and game data with an improved data structure compared to the raw official source. It is free to use without any authentication. Beginners can use it to explore how API proxies work while accessing Warface game data.

💡

Beginner Tip

This is an unofficial proxy, so availability may vary; always handle errors gracefully and consider caching responses. Check the status page before building anything relying on it for production use.

Available Data

Warface (non-official) data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON Response
{
  "id": 1,
  "name": "Warface (non-official)",
  "data": "Official API proxy with better data structure and more features",
  "source": "Warface (non-official)"
}

Field Reference

nickname In-game username of the Warface player.
rank Current military rank of the player in the game.
kills Total number of kills across all game modes.
deaths Total number of deaths, used to calculate K/D ratio.
playtime Total hours played as recorded by the game servers.

Implementation Example

const url = "https://api.wfstats.cf/";
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

503 Service Unavailable The unofficial proxy server is temporarily down or under maintenance.
Wait and retry later; this is an unofficial service with no uptime SLA.
Player not found The username does not exist on the specified server region.
Ensure the region parameter matches the player's registered server (e.g. pc/en for PC English).
Stale or outdated data The proxy caches data and may not reflect the most recent game session.
This is expected; treat the data as approximate and note the last_updated timestamp in the response.

Matrix Score Breakdown

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

Fully tested on Apr 5, 2026

Technical Specifications

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

Similar APIs

View All →