Map

GET https://marvelrivalsapi.com/api/v2/map/:id

Retrieves a specific maps information.

Headers

Name
Value

Content-Type

application/json

x-api-key*

YOUR API KEY

Query Parameters

Name
Type
Required
Description

id*

integer

✔️

The id of the map

Example Requests

curl -X GET "https://marvelrivalsapi.com/api/v2/map/1311"
     -H "x-api-key: YOUR_API_KEY"

Response

{
    "id": 1311,
    "name": "Arakko",
    "full_name": "Hellfire Gala: Arakko: Sister Island of Krakoa",
    "location": "Hellfire Gala",
    "description": "Escort the \"Avatar of Krakoa\" payload through two checkpoints and to the Great Ring",
    "game_mode": "Convoy",
    "is_competitve": true,
    "sub_map": {
        "id": 1248,
        "name": null,
        "thumbnail": null
    },
    "video": "https://youtu.be/_DCOXD7X7yA",
    "images": [
        "/rivals/maps/map_1311.png",
        "/rivals/maps/medium/map_1311.png",
        "/rivals/maps/large/map_1311.png"
    ]
}

Breakdown of Map Object:

Field
Type
Description

id

Number

Unique identifier for the map

name

String

Short name of the map

full_name

String

Full name of the map, including location

location

String

Location of the map

description

String

Description of the map

game_mode

String

The game mode of the map (e.g., "Convoy", "Convergence")

is_competitve

Boolean

Whether the map is competitive or not

sub_map

Object

Sub-map details, includes id, name, and thumbnail

video

String

Video URL related to the map

images

Array

Array of image paths related to the map

Last updated

Was this helpful?