Skip to main content
The Bundles API gives you access to every themed cosmetic collection that has appeared in the Valorant featured store. Bundles group skins, gun buddies, sprays, and player cards under a shared theme — such as the Prime 2.0 Bundle — and are typically sold at a discounted price compared to purchasing each item individually. You can retrieve the full bundle catalog or fetch details for a specific bundle by UUID.
The User-Agent header is required for all requests. Use the format AppName/Version (+URL) — for example, MyApp/1.0 (+https://example.com).

Endpoints


GET /v1/bundles

Returns an array of all Valorant store bundles.

Request parameters

string
required
Identifies your application. Format: AppName/Version (+URL).
string
default:"en-US"
Locale for localized display names and descriptions. Example: es-ES, it-IT.

Example request

Response


GET /v1/bundles/

Returns a single bundle matching the provided UUID.

Request parameters

string
required
The UUID of the bundle to retrieve.
string
required
Identifies your application. Format: AppName/Version (+URL).
string
default:"en-US"
Locale for localized display names and descriptions.

Example request

cURL

Response


Response fields

string
required
Unique identifier for the bundle.
string
required
Localized name of the bundle (e.g., "Prime 2.0 Bundle").
string
Secondary localized name or subtitle. May be null.
string
Localized marketing description of the bundle’s theme or contents. May be null.
string
Additional localized description text. May be null.
string
Promotional copy shown during featured store events. May be null.
boolean
Whether the bundle uses additional context data for display purposes.
string
URL to the primary bundle display icon.
string
URL to a secondary display icon variant. May be null.
string
URL to the bundle’s logo icon. May be null.
string
Internal Unreal Engine asset path for the bundle data object.
Bundle UUIDs are stable across patches. You can safely store and reference them to track which bundles have appeared in the featured store over time.