Skip to content

API

https://skins.visoftware.dev

Get 2D Rendering of Skin

GET /2d/skins/:name/:type?scale=:scale

Get the rendered 2D avatar of a user.

Headers

NombreValor
Content-Typeimage/png

URL & Query

NameTypeDescription
namestringUsername or User UUID
typestring

fullbody - For full body
head - For the head only

scalenumberNumber from 1 to 50

Respuesta

{% tabs %} {% tab title=“200” %}

Image with the avatar

{% endtab %}

{% tab title=“404” %}

{
"code": "404",
"error": "Player not found"
}

{% endtab %}

{% tab title=“403” %}

{
"code": "403",
"error": "Action forbidden"
}

{% endtab %}

{% tab title=“500” %}

{
"code": "500",
"error": "Internal Server Error"
}

{% endtab %} {% endtabs %}

Example of use

  • Get the player skin head render:

    GET /2d/skin/Benson/head
  • Get the full body render of the player skin with scale 2:

    GET /2d/skin/Benson/fullbody?scale=2