Appearance
Get Avatar Details
GET
/api/v1/avatar/{avatar_id}
Get detailed information about a specific avatar by its ID, including its name and associated image.
Authorizations
HTTPBearer
TypeHTTP (bearer)
Parameters
Path Parameters
avatar_id*
Typeinteger
RequiredResponses
Successful Response
application/json
JSON
{
"avatar_id": 0,
"avatar_name": "string",
"avatar_url": "string",
"avatar_description": {
"additionalProperties": "string"
},
"count_generation_results": 0,
"generation_result_id": 0,
"created_at": "string",
"updated_at": "string"
}
GET
/api/v1/avatar/{avatar_id}
Authorization
HTTPBearer
Variables
Key
Value
avatar_id*
Samples
cURL
curl -X GET \
'https://api.uwear.ai/api/v1/avatar/{avatar_id}' \
-H "Content-Type: application/json" \
-H "authorization: Bearer Bearer Token"
JavaScript
fetch('https://api.uwear.ai/api/v1/avatar/{avatar_id}', {headers:{'Content-Type':'application/json','authorization':'Bearer Bearer Token'}})
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://api.uwear.ai/api/v1/avatar/{avatar_id}';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
'authorization' => 'Bearer Bearer Token',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests
url = 'https://api.uwear.ai/api/v1/avatar/{avatar_id}'
headers = {
'Content-Type': 'application/json',
'authorization': 'Bearer Bearer Token'
}
response = requests.get(url, headers=headers)
print(response.json())