Costume

GET https://marvelrivalsapi.com/api/v1/heroes/hero/:query/costume/:costume_query

This endpoint retrieves detailed information about a specific costume for a hero, including the costume's name, rarity, description, appearance, and, if the user is premium, a link to a video associated with the costume.

Headers

Name
Value

Content-Type

application/json

x-api-key*

YOUR API KEY

Query Parameters

Name
Type
Required
Description

query*

string

✔️

The name or ID of the hero to retrieve.

costume_query*

string

✔️

The name or ID of the costume to fetch for the hero.

Example Requests

curl -X GET "https://marvelrivalsapi.com/api/v1/heroes/hero/squirrel girl/costume/Cheerful Dragoness"
     -H "x-api-key: YOUR_API_KEY"

Response

{
  "id": "costume_001",
  "name": "Ironman Mark 1",
  "icon": "/costumes/loki-1016001.png",
  "rarity": "Rare",
  "description": "The original Ironman suit with a rough, industrial design.",
  "appearance": "A shiny metallic suit with a red and gold color scheme.",
  "video": "/premium/videos/1016001.mp4?expires=1739247126&signature=703f6668b37f5100e4b333a201d873412f84ea5c5bbff067b29813e5833dc5f8"
}
Field
Type
Description

id

String

Unique costume ID (e.g., "costume_001").

name

String

Name of the costume (e.g., "Ironman Mark 1").

icon

String

URL or path to the costume's icon image (e.g., /costumes/loki-1016001.png).

rarity

String

The rarity level of the costume (e.g., "Rare").

description

String

Short description of the costume (e.g., "The original Ironman suit...").

appearance

String

Detailed visual description of the costume (e.g., "A shiny metallic suit...").

video

String

URL or path to the premium video associated with the costume. The link typically includes an expiration timestamp and a signature for access control (e.g., /premium/videos/1016001.mp4?expires=1739247126&signature=703f6668b37f5100e4b333a201d873412f84ea5c5bbff067b298

Last updated

Was this helpful?