Skins List
curl -X GET "https://api.5centscdn.com/v2/players/5centscdn/skins" \
-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"
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", {
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", 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')
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": "Sample Player Skin",
"base": 1,
"meta": {
"showskinoninit": 1,
"showpip": 1,
"autoplay": 1,
"muted": 0,
"endAction": "",
"infoTitle": "",
"infoUrl": "",
"infoDescription": "",
"infoIcon": "",
"primaryColor": "#1a73e8",
"secondaryColor": "#ffffff",
"logo": {
"file": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
"position": "top-right",
"width": "50",
"height": "50",
"offsetH": "10",
"offsetV": "10",
"padding": "5",
"opacity": "1",
"fadeDelay": "0"
},
"poster": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
"contextUrl": "",
"contextText": "",
"contextIcon": "",
"imaAdOption": {
"adTagUrl": ""
},
"vastAdOption": {
"tagURL": [
"",
"",
""
]
},
"offline": {
"offlineImage": "",
"offlineTimeout": "00:00:00",
"label": ""
},
"relatedVideos": [
{
"thumb": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
"url": "https://cdn.example.com/videos/sample-video.mp4",
"duration": "120",
"title": "Sample Related Video"
}
],
"showcv": 0
},
"created_at": "2026-01-01 00:00:00",
"updated_at": "2026-01-15 12:00:00"
}
]
GET
/players/5centscdn/skins
GET
Base URLstring
Target server for requests. Edit to use your own host.
API Key (header: X-API-Key)
X-API-Keystring
RequiredAPI key (sent in header)
Request Preview
Response
Response will appear here after sending the request
Authentication
header
X-API-Keystring
RequiredAPI Key for authentication. Provide your API key in the header.
Responses
idinteger
Unique identifier of the player skin.
serviceidinteger
Service account ID that owns this skin.
hashidstring
Unique hash identifier for the skin, used in embed codes.
namestring
Display name of the player skin.
baseinteger
Base skin template. Valid values: 1, 2, 3, 4, or 5
metaobject
Skin configuration settings.
created_atstring
Creation timestamp in UTC. Format: YYYY-MM-DD HH:mm:ss
updated_atstring
Last updated timestamp in UTC. Format: YYYY-MM-DD HH:mm:ss
Was this page helpful?