Get Photo Avatar Details

GEThttps://api.konpro.ai/v1/photo_avatar/{id}

Retrieve detailed information about a specific photo avatar by its unique identifier.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

cURL Request

shell
curl --request GET \
--url https://api.konpro.ai/v1/photo_avatar/<id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

Path Parameter

ParameterTypeDescription
idstringUnique identifier of the photo avatar (required)

Response

Response Structure

Returns detailed metadata about the photo avatar, including creation date, appearance, motions, sound effects, and other attributes. Provides error information if the avatar is not found or the request fails.

Sample Successful Response

json
{
  "id": "photoAvatar123",
  "name": "Professional Avatar",
  "status": "active",
  "created_at": "2024-01-15T10:00:00Z",
  "updated_at": "2024-01-15T12:30:00Z",
  "appearance": {
    "style": "Realistic",
    "orientation": "square",
    "pose": "half_body"
  },
  "motion": {
    "enabled": true,
    "motion_type": "consistent",
    "prompt": "Smooth walking motion with head tilt"
  },
  "sound_effect": {
    "enabled": true,
    "added_at": "2024-01-15T12:30:00Z"
  },
  "metadata": {
    "group_id": "avatarGroup123",
    "generation_id": "gen_789012",
    "training_status": "completed"
  }
}

Notes

  • Requires API authentication.
  • The id must reference an existing photo avatar.
  • Returns comprehensive metadata about the avatar.
  • Includes information about motion and sound effects if enabled.
  • Provides creation and update timestamps.
  • Shows training status and related generation information.
  • Refer to Error Responses for error information.

Example Usage

Shell
curl --request GET \
--url https://api.konpro.ai/v1/photo_avatar/<id> \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

LANGUAGE

CREDENTIALS

HEADER

RESPONSE

Examples

Choose an example:

application/json
200 - Success
400 - Bad Request