Store (no daily stores)
You can't get daily stores for an individual user
Get the current bundles (store-featured) and all available offers that exist (store-offers)
get
Authorizations
Responses
200
MMR Details
application/json
400
Request error by the client (missing query for example)
application/json
403
Forbidden to connect to the Riot API (mainly maintenance reasons on riot side like patches) or to the HenrikDev API itself because of bot prevention for example
application/json
404
The entity was not found (player/match/general data)
application/json
408
Timeout while fetching riot data
application/json
429
Rate limit reached (can be global API limit which affects all users or just you, when the "x-ratelimit-remaining" header is 0 then it's a personal limit)
application/json
503
Riot API seems to be down, API unable to connect
application/json
get
GET /valorant/v1/store-featured HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
"status": 1,
"data": {
"FeaturedBundle": {
"Bundle": {
"ID": "text",
"DataAssetID": "text",
"CurrencyID": "text",
"Items": [
{
"Item": {
"ItemTypeID": "text",
"ItemID": "text",
"Amount": "text"
},
"BasePrice": 1,
"CurrencyID": "text",
"DiscountPercent": 1,
"DiscountedPrice": 1,
"IsPromoItem": true
}
],
"DurationRemainingInSeconds": 1,
"Wholesaleonly": true
},
"Bundles": [
{
"ID": "text",
"DataAssetID": "text",
"CurrencyID": "text",
"Items": [
{
"Item": {
"ItemTypeID": "text",
"ItemID": "text",
"Amount": "text"
},
"BasePrice": 1,
"CurrencyID": "text",
"DiscountPercent": 1,
"DiscountedPrice": 1,
"IsPromoItem": true
}
],
"DurationRemainingInSeconds": 1,
"Wholesaleonly": true
}
],
"BundleRemainingDurationInSeconds": 1
}
}
}
get
Authorizations
Responses
200
MMR Details
application/json
400
Request error by the client (missing query for example)
application/json
403
Forbidden to connect to the Riot API (mainly maintenance reasons on riot side like patches) or to the HenrikDev API itself because of bot prevention for example
application/json
404
The entity was not found (player/match/general data)
application/json
408
Timeout while fetching riot data
application/json
429
Rate limit reached (can be global API limit which affects all users or just you, when the "x-ratelimit-remaining" header is 0 then it's a personal limit)
application/json
503
Riot API seems to be down, API unable to connect
application/json
get
GET /valorant/v2/store-featured HTTP/1.1
Host: api.henrikdev.xyz
Authorization: YOUR_API_KEY
Accept: */*
{
"status": 1,
"data": [
{
"bundle_uuid": "text",
"seconds_remaining": 1,
"bundle_price": 1,
"whole_sale_only": true,
"expires_at": "text",
"items": [
{
"uuid": "text",
"name": "text",
"image": "text",
"type": "text",
"amount": 1,
"discount_percent": 1,
"base_price": 1,
"discounted_price": 1,
"promo_item": true
}
]
}
]
}
Last updated