Introduction Last updated: 2021-09-09

  • What is VALORANT
  • About ValorantPI
  • Future of ValorantPI

What is VALORANT?

VALORANT is a free-to-play first-person hero shooter developed and published by Riot Games. First teased under the codename Project A in October 2019, the game began a closed beta period with limited access on April 7, 2020, followed by an official release on June 2, 2020. The development of the game started in 2014. VALORANT is a team-based first-person hero shooter set in the near future. Players play as one of a set of agents, characters designed based on several countries and cultures around the world. Each agents have their abilities.

About ValorantPI

ValorantPI will provide you some basics information about VALORANT. We provide some basics information like Heroes and their Roles and Abilities, Weapons, and Maps.

Future of ValorantPI

We're not done yet. We still in progress. Many information will provide. It's just about time. So, if you interested in this project, please contact me. :)

How To Use

You don't need API key or something like that. You can directly use ValorantPI to your own project. You can see the format below.


    [METHOD] https://valorantpi.herokuapp.com/api/{endPoint}
                        

Agent

GET All Agents

This is method allows you to see all agents data.


    [GET] https://valorantpi.herokuapp.com/api/hero
                        

    {
        "id": 10,
        "heroName": "Breach",
        "heroDescription": "Breach, the bionic Swede, fires powerful, targeted kinetic blasts to aggressively clear a path
        through enemy ground. The damage and disruption he inflicts ensures no fight is ever fair.",
        "heroReleased": "2020-04-07T00:00:00.000Z",
        "roleID": 5,
        "createdAt": "2021-09-09T11:02:07.591Z",
        "updatedAt": "2021-09-09T11:02:31.699Z",
        "skills": [
        
        ]
    }, ...
                        

Roles

GET All Role

This is method allows you to see all roles data.


    [GET] https://valorantpi.herokuapp.com/api/role
                        

    {
        "id": 3,
        "roleName": "Duelist",
        "roleDescription": "Duelists are self-sufficient fraggers who their team expects, through abilities and skills, to get
        high frags and seek out engagements first.",
        "createdAt": "2021-09-09T10:38:15.185Z",
        "updatedAt": "2021-09-09T10:38:15.185Z"
    }, ...
                        

Agent Abilities

GET All Abilities

This is method allows you to see all agent abilites data.


    [GET] https://valorantpi.herokuapp.com/api/hero/skill
                        

    {
        "skillName": "Empress",
        "skillDescription": "Reyna Ult",
        "heroID": 1,
        "updatedAt": "2021-09-09T05:05:40.983Z",
        "createdAt": "2021-09-09T05:05:40.983Z"
    } ...
                        

Weapons

GET All Weapon

This is method allows you to see all weapon data.


    [GET] https://valorantpi.herokuapp.com/api/weapon
                        

    {
        "id": 15,
        "weaponName": "Operator",
        "weaponDescription": "A fierce bolt-action sniper rifle with high-powered dual zoom. Extremely immobile but fires an
        incredibly powerful round that can devastate a team with one shot.",
        "weaponType": "Sniper",
        "createdAt": "2021-09-09T11:17:06.973Z",
        "updatedAt": "2021-09-09T11:17:06.973Z"
    }, ...
                        

Maps

GET All Map

This is method allows you to see all map data.


    [GET] https://valorantpi.herokuapp.com/api/map
                        

    {
        "id": 1,
        "mapName": "Ascent",
        "mapDescription": "An open playground for small wars of position and attrition divide two sites on Ascent.
        Each site can be fortified by irreversible bomb doors; once they’re down, you’ll have to destroy them
        or find another way. Yield as little territory as possible.",
        "mapReleased": "2020-06-02T00:00:00.000Z",
        "createdAt": "2021-09-09T11:19:24.868Z",
        "updatedAt": "2021-09-09T11:19:24.868Z"
    }, ...