Get Player Skin
curl -X GET "https://api.5centscdn.com/v2/players/5centscdn/skins/example_string" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY"
import requests
import json
url = "https://api.5centscdn.com/v2/players/5centscdn/skins/example_string"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.5centscdn.com/v2/players/5centscdn/skins/example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api.5centscdn.com/v2/players/5centscdn/skins/example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.5centscdn.com/v2/players/5centscdn/skins/example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['X-API-Key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"id": 12345,
"serviceid": 10001,
"hashid": "sample-skin-hash",
"name": "My Custom Player",
"base": 1,
"meta": {
"logo": {
"position": "bottom-right",
"width": "70",
"height": 50,
"offsetH": 6,
"offsetV": 46
}
},
"created_at": "2026-01-01 00:00:00",
"updated_at": "2026-01-15 12:00:00"
}
/players/5centscdn/skins/{skinid}Target server for requests. Edit to use your own host.
API key (sent in header)
Request Preview
Response
Response will appear here after sending the request
Authentication
API Key for authentication. Provide your API key in the header.
Path Parameters
Responses
Unique identifier of the player skin.
Service account ID that owns this skin.
Unique hash identifier for the skin, used in embed codes.
Display name of the player skin.
Base skin template. Valid values: 1, 2, 3, 4, or 5
Skin configuration settings.
Branding logo overlay configuration.
Position of the logo overlay. One of: top-left, top-right, bottom-left, bottom-right
Logo width in pixels, returned as string.
Logo height in pixels.
Horizontal offset from the anchor position in pixels.
Vertical offset from the anchor position in pixels.
Creation timestamp in UTC. Format: YYYY-MM-DD HH:mm:ss
Last updated timestamp in UTC. Format: YYYY-MM-DD HH:mm:ss