Valorant (non-official) API
Overview
The unofficial Valorant API provides comprehensive data about Riot Games' Valorant including agents, weapons, maps, skins, and game modes — all without authentication. It is community-maintained and kept up-to-date with each game patch. Perfect for developers building Valorant companion apps, wikis, or stat trackers.
Beginner Tip
All endpoints return data arrays; use the ?language=en-US query parameter to get English-language names and descriptions. The API does not require an API key, so you can start querying immediately.
Available Data
Example Response
{
"id": 1,
"name": "Valorant (non-official)",
"data": "An extensive API containing data of most Valorant in-game items, assets and more",
"source": "Valorant (non-official)"
} Field Reference
status HTTP status code of the response; 200 indicates success. data Array of game objects (agents, weapons, maps, etc.) matching the endpoint. data[].uuid Unique identifier for the game object, used to request specific items. data[].displayName Localised display name of the agent, weapon, or map. data[].displayIcon URL to the icon image for the game object, hosted on Riot CDN. data[].description Lore or gameplay description of the object in the selected language. Implementation Example
const url = "https://valorant-api.com/";
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.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.