Skip to content

List Faces

Lists all available avatar faces for the authenticated user.

This example assumes using Simli; is in scope and apiKey contains your Simli API key.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
using var client = new SimliClient(apiKey);

// List all available avatar faces
var faces = await client.GetFacesAsync();

Console.WriteLine($"Found {faces.Count} face(s)");
foreach (var face in faces)
{
    Console.WriteLine($"  Face ID: {face.Id}, Version: {face.SimliVersion}, Created: {face.CreatedAt}");
}