Skip to content

Avatar Creation Guidelines

Guidelines for instant avatar creation

From this API you will receive an array of guidelines consisting of both 'do' and 'don't' recommendations for providing high-quality image. The 'do' section includes best practices, while the 'don't' section highlights common mistakes to avoid. Additionally, a video link is provided as part of the response to visually guide you through the process.

curl --request GET \
     --url 'https://api.immersive-fox.com/v1/avatar/instant_avatar_guidelines/'  \
     --header 'X-Api-Key: <your-api-key>' \
     --header 'Content-Type: application/json' 
[
    {
        "do": [
            "Look straight into the camera.",
            "Use a gentle smile or a slightly open mouth."
        ],
        "dont": [
            "Look to the side or turn your head.",
            "Close your mouth fully."
        ],
        "video_link": "https://my-bucket-name.s3.eu-central-1.amazonaws.com/guidelines.mp4"
    }
]

Guidelines for premium avatar creation

From this API you will receive an array of guidelines consisting of both 'do' and 'don't' recommendations for providing high-quality video. The 'do' section includes best practices, while the 'don't' section highlights common mistakes to avoid. Additionally, a video link is provided as part of the response to visually guide you through the process.

curl --request GET \
     --url 'https://api.immersive-fox.com/v1/avatar/premium_avatar_guidelines/'  \
     --header 'X-Api-Key: <your-api-key>' \
     --header 'Content-Type: application/json' 
[
    {
        "do": [
            "Use colors and styles contrasting with the background.",
            "Ensure high-quality video (1080p, 4k, or UHD)."
        ],
        "dont": [
            "Position the camera above or below eye level.",
            "Shoot in vertical ratio."
        ],
        "video_link": "https://my-bucket-name.s3.eu-central-1.amazonaws.com/guidelines.mp4"
    }
]

Rules for 1 minute silent video

From this API you will receive an array of guidelines consisting of both 'do' and 'don't' recommendations for providing a silent video. The 'do' section includes best practices, while the 'don't' section highlights common mistakes to avoid. Additionally, a video link is provided as part of the response to visually guide you through the process.

curl --request GET \
     --url 'https://api.immersive-fox.com/v1/avatar/silent_video_guidelines/'  \
     --header 'X-Api-Key: <your-api-key>' \
     --header 'Content-Type: application/json' 
[
    {
        "do": [
            "Look straight into the camera.",
            "Use a gentle smile or a slightly open mouth."
        ],
        "dont": [
            "Look to the side or turn your head.",
            "Close your mouth fully."
        ],
        "video_link": "https://my-bucket-name.s3.eu-central-1.amazonaws.com/guidelines.mp4"
    }
]

Rules for 1 minute speaking video

From this API you will receive an array of guidelines consisting of both 'do' and 'don't' recommendations for providing a speaking video. The 'do' section includes best practices, while the 'don't' section highlights common mistakes to avoid. Additionally, a video link is provided as part of the response to visually guide you through the process.

curl --request GET \
     --url 'https://api.immersive-fox.com/v1/avatar/speaking_video_guidelines/'  \
     --header 'X-Api-Key: <your-api-key>' \
     --header 'Content-Type: application/json' 
[
    {
        "do": [
            "Speak clearly.",
            "Use your natural facial expressions."
        ],
        "dont": [
            "Speak too fast.",
            "Turn your head to the side."
        ],
        "video_link": "https://my-bucket-name.s3.eu-central-1.amazonaws.com/guidelines.mp4"
    }
]