Hyper Dash Image API

Welcome to the Hyper Dash Image API. Here you can get images of the Hyper Dash robots with various combinations of poses, team colors, helmets and weapons. All images are supplied by the Hyper Dash developers at Triangle Factory.

How to use

Images can be requested directly to the same url as this page with /images/{image file name} added to the end. It should look like this: {{ uri }}images/Attack_0_0_0DefaultPistol_0DefaultPistol.png.

To find the file name of the combination you want you can send a JSON formated POST request to the same url as this page with some / all of the following parameters:

pose

The pose of the character. Available options: attack, crossedarms, falling, jump, shootspectator, suprise.

color

The team color of the character. Available options: red, blue.

helmet

The helmet of the character. Available options: 0, 1, 2, 3, 4, 5.

leftHand and rightHand

The weapon that the character holds in the left and right hand. Available options: pistol, uzi/smg, rocket, shotgun, staple/burst/burstrifle, sniper/revolver, shock/shockpistol.

Example

Request JSON body:
{
	"pose": "falling",
	"color": "blue",
	"helmet": 3,
	"leftHand": "rocket",
	"rightHand": "pistol"
}

Response:
Falling_1_3_2Rocket_0DefaultPistol.png

Image request:
{{ uri }}images/Falling_1_3_2Rocket_0DefaultPistol.png

Image response:

Interactive image explorer

pose

color

helmet

leftHand

rightHand

Image URL:
{{ interactiveFilePath }}

API request body:
{{ interactiveRequestBody }}