List Models This example assumes using Ultravox; is in scope and apiKey contains your Ultravox API key. 1 2 3 4 5 6 7 8using var client = new UltravoxClient(apiKey); PaginatedModelAliasList models = await client.Models.ModelsListAsync(); foreach (var model in models.Results) { Console.WriteLine($"Model: {model.Name}"); }