Skip to main content

Get a skin by UUID

GET 

https://api.mineskin.org/v2/skins/:uuid

Get a skin by UUID

Request

Path Parameters

    uuid uuidrequired

Header Parameters

    User-Agent stringrequired

    Custom User-Agent for your application, see user-agent.dev for implementation examples. Alternatively you can also use the 'MineSkin-User-Agent' header.

    Example: ExampleApp/v1.0
    Authorization string

    API key from account.mineskin.org

    Example: Bearer da84de82e960d6c0510088279878c79365ad5118d350d619f20324a5494f156b

Responses

Skin Info

Schema

    uuidstringrequired
    namestring
    visibilitySkinVisibility (string)required

    Possible values: [public, unlisted, private]

    Default value: public
    variantSkinVariant (string)required

    Possible values: [classic, slim, unknown]

    Default value: unknown

    texture

    object

    required

    data

    object

    required

    valuestringrequired

    Skin Value

    signaturestringrequired

    Skin Signature

    hash

    object

    required

    skinstringrequired

    Skin Hash

    capestring

    (optional) Cape Hash

    url

    object

    required

    skinstringrequired

    Skin Texture Url

    capestring

    (optional) Cape Texture Url

    generator

    object

    required

    versionstringrequired
    timestampnumberrequired
    durationnumberrequired
    accountstringrequired
    serverstringrequired
    viewsnumberrequired
    duplicatebooleanrequired

Authorization: http

name: bearerAuthtype: httpdescription: API key header - Get your key from [account.mineskin.org](https://account.mineskin.org/keys)scheme: bearer
MineSkinClient client = MineSkinClient.builder()
.requestHandler(JsoupRequestHandler::new)
.userAgent("MyMineSkinApp/v1.0")
.apiKey("<api key>")
.build();
client.skins().get("<skin uuid>").thenAccept(response -> {
Skin skin = response.getSkin();
});

Request Collapse all
Base URL
https://api.mineskin.org
Auth
Parameters
— pathrequired
— headerrequired
— header
ResponseClear

Click the Send API Request button above and see the response here!