123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- extends layout
- block content
- .container(style= "margin-top: 70px;")
- .row
- .col-md-10
- a(id="crafatar", class="anchor")
- a(href="#crafatar")
- h1 Crafatar
- hr
- p Welcome to Crafatar, an API for Minecraft's faces!
- hr
- a(id="documentation", class="anchor")
- a(href="#documentation")
- h2 Documentation
- a(id="avatars", class="anchor")
- a(href="#avatars")
- h3 Avatars
- p
- | Replace
- mark.green id
- | with a Mojang UUID or username to get the related head. All images are PNGs.
- .code
- | #{domain}/avatars/
- mark.green id
- |
- a(id="parameters", class="anchor")
- a(href="#parameters")
- h3 Parameters
- a(id="size", class="anchor")
- a(href="#size")
- h4 size
- p The size of the image in pixels, #{config.min_size} - #{config.max_size}. <br> Default is #{config.default_size}.
- a(id="default", class="anchor")
- a(href="#default")
- h4 default
- p
- | The image to be returned when the id has no skin (404). <br> Valid options are
- a(href="/avatars/00000000000000000000000000000000?default=steve") steve
- | or
- a(href="/avatars/00000000000000000000000000000000?default=alex") alex
- | .<br> A URL is also accepted. <br>
- | The standard value is calculated based on the id (even = alex, odd = steve)
- a(id="helm", class="anchor")
- a(href="#helm")
- h4 helm
- p Get an avatar with the second (helmet) layer applied. <br> The content of this parameter is ignored
- a(id="skins", class="anchor")
- a(href="#skins")
- h3 Skins
- p
- | You can also get the full skin file from name or id. <br>
- | Replace
- mark.green id
- | with a Mojang UUID or username to get the related skin.
- | You are redirected to the textures URL, or a 404 is returned.
- .code
- | #{domain}/skins/
- mark.green id
- a(id="http-headers", class="anchor")
- a(href="#http-headers")
- h3 HTTP headers
- p Responses come with these HTTP headers, useful for debugging.
- a(id="response-time", class="anchor")
- a(href="#response-time")
- h4 Response-Time
- p The time, in milliseconds, it took Crafatar to process the request.
- a(id="x-storage-type", class="anchor")
- a(href="#x-storage-type")
- h4 X-Storage-Type
- ul
- li <b>none</b>: No external requests. Cached: User has no skin.
- li <b>cached</b>: No external requests. Skin cached and stored locally.
- li
- | <b>checked</b>: 1 external request. Skin cached, checked for updates, no skin downloaded.<br>
- | This happens either when the user removed their skin or when it didn't change.
- li <b>downloaded</b>: 2 external requests. Skin changed or unknown, downloaded.
- li
- | <b>error</b>: This can happen, for example, when Mojang's servers are down.<br>
- | If possible, an outdated image is be served instead.
- a(id="about-usernames", class="anchor")
- a(href="#about-usernames")
- h3 About usernames
- p
- | We strongly advise you to use UUIDs instead of usernames in production.
- | Usernames are deprecated by Mojang and you should only use usernames for testing.<br>
- | Invalid usernames are rejected and a 422 is returned.
- a(id="about-uuids", class="anchor")
- a(href="#about-uuids")
- h3 About UUIDs
- p
- | UUIDs may use the raw or dashed format.<br>
- | Invalid UUIDs are rejected and a 422 is returned.
- a(id="about-caching", class="anchor")
- a(href="#about-caching")
- h3 About caching
- p
- | Crafatar caches keeps skins for #{config.local_cache_time} seconds until they are checked for changes.<br>
- | Images should be cached in browsers for #{config.browser_cache_time} seconds until a new request to Crafatar is made.
- a(id="examples", class="anchor")
- a(href="#examples")
- h3 Examples
- p Get jeb_'s avatar
- .code #{domain}/avatars/853c80ef3c3749fdaa49938b674adae6
- p Get jeb_'s avatar, 64 × 64 pixels
- .code #{domain}/avatars/853c80ef3c3749fdaa49938b674adae6?size=64
- p Get jeb_'s helmet avatar, 64 × 64 pixels
- .code #{domain}/avatars/853c80ef3c3749fdaa49938b674adae6?size=64&helm
- p Get jeb_'s avatar or fall back to steve
- .code #{domain}/avatars/853c80ef3c3749fdaa49938b674adae6?default=steve
- p
- | Get jeb_'s avatar or fall back to
- a(href="https://i.imgur.com/ozszMZV.png") a custom image
- .code #{domain}/avatars/853c80ef3c3749fdaa49938b674adae6?default=https%3A%2F%2Fi.imgur.com%2FozszMZV.png
- p Get jeb_'s avatar by username
- .code #{domain}/avatars/jeb_
- p Get jeb_'s skin
- .code #{domain}/skins/853c80ef3c3749fdaa49938b674adae6
- p Get jeb_'s skin by username
- .code #{domain}/skins/jeb_
- .col-md-2.center
- .sideface.redstone_sheep(title="redstone_sheep")
- .sideface.Jake0oo0(title="Jake0oo0")
- .sideface.Notch(title="Notch")
- .sideface.sk89q(title="sk89q")
- .sideface.md_5(title="md_5")
|