New Endpoint
POST /valorant/v1/raw
[**Available types]:** competitiveupdates, mmr, matchdetails, matchhistory
[**Available values]:** PUUID or MatchID
[**Available types]:** eu, na, ap, kr
[**Available queries]:** Queries that are available on the endpoints, see [here](https://github.com/techchrism/valorant-api-docs/tree/trunk/docs/PVP%20Endpoints)
With that endpoint you can get the raw response from the RiotGames API without any access token generation or something.
The usage changed a bit, here is an example:
**POST BODY**
{
"type": "competitiveupdates",
"value": "54942ced-1967-5f66-8a16-1e0dae875641",
"region": "eu",
"queries": "?queue=competitive"
}
**Result:**
{
"Version": 0,
"Subject": "54942ced-1967-5f66-8a16-1e0dae875641",
"Matches": [
{
"MatchID": "166bfe78-8d08-4063-baf0-7f1a445c5260",
"MapID": "/Game/Maps/Ascent/Ascent",
"SeasonID": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
"MatchStartTime": 1629486604312,
"TierAfterUpdate": 11,
"TierBeforeUpdate": 11,
"RankedRatingAfterUpdate": 36,
"RankedRatingBeforeUpdate": 54,
"RankedRatingEarned": -18,
"RankedRatingPerformanceBonus": 0,
"CompetitiveMovement": "MOVEMENT_UNKNOWN",
"AFKPenalty": 0
},
{
"MatchID": "5be16522-f5de-45d3-aad9-17ca714073be",
"MapID": "/Game/Maps/Port/Port",
"SeasonID": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
"MatchStartTime": 1628508946124,
"TierAfterUpdate": 11,
"TierBeforeUpdate": 11,
"RankedRatingAfterUpdate": 54,
"RankedRatingBeforeUpdate": 54,
"RankedRatingEarned": 0,
"RankedRatingPerformanceBonus": 0,
"CompetitiveMovement": "MOVEMENT_UNKNOWN",
"AFKPenalty": 0
},
{
"MatchID": "c1925f46-9914-49b5-ac1a-7e4dfe1c9d7d",
"MapID": "/Game/Maps/Bonsai/Bonsai",
"SeasonID": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
"MatchStartTime": 1628281078337,
"TierAfterUpdate": 11,
"TierBeforeUpdate": 11,
"RankedRatingAfterUpdate": 54,
"RankedRatingBeforeUpdate": 71,
"RankedRatingEarned": -17,
"RankedRatingPerformanceBonus": 0,
"CompetitiveMovement": "MOVEMENT_UNKNOWN",
"AFKPenalty": 0
},
{
"MatchID": "07c58f11-2a30-49ee-9500-d8127fbf3357",
"MapID": "/Game/Maps/Port/Port",
"SeasonID": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
"MatchStartTime": 1628278316574,
"TierAfterUpdate": 11,
"TierBeforeUpdate": 11,
"RankedRatingAfterUpdate": 71,
"RankedRatingBeforeUpdate": 50,
"RankedRatingEarned": 21,
"RankedRatingPerformanceBonus": 0,
"CompetitiveMovement": "MOVEMENT_UNKNOWN",
"AFKPenalty": 0
},
{
"MatchID": "0de74b29-8cc4-4f82-b564-1954f60d8cd4",
"MapID": "/Game/Maps/Duality/Duality",
"SeasonID": "2a27e5d2-4d30-c9e2-b15a-93b8909a442c",
"MatchStartTime": 1628276049689,
"TierAfterUpdate": 11,
"TierBeforeUpdate": 11,
"RankedRatingAfterUpdate": 50,
"RankedRatingBeforeUpdate": 22,
"RankedRatingEarned": 28,
"RankedRatingPerformanceBonus": 6,
"CompetitiveMovement": "MOVEMENT_UNKNOWN",
"AFKPenalty": 0
}
]
}