/v1/locres endpoints expose these tables so you can build fully localized tools without making repeated per-request translation calls. You fetch the string table once for your target locale, store it locally, and resolve any key whenever you need it.
List available locales
Use this endpoint to retrieve the complete list of locale codes the API supports. You can then pass any of these codes to the/v1/locres/{locale} endpoint to fetch the corresponding string table.
Endpoint
Response
Get string table for a locale
Once you know which locale you need, pass its code as a path parameter to retrieve the full StringTable for that language. The response contains every localized string that Valorant ships for that locale, organized by table namespace.Endpoint
string
required
The locale code to retrieve the string table for. Must be one of the supported codes returned by
GET /v1/locres: ar-AE, de-DE, en-US, es-ES, es-MX, fr-FR, id-ID, it-IT, ja-JP, ko-KR, pl-PL, pt-BR, ru-RU, th-TH, tr-TR, vi-VN, zh-CN, or zh-TW.Response (abbreviated)
The string table contains thousands of entries. Consider caching the response for your locale and only refreshing when the game version changes.