Docs / SDKs / .NET
.NET SDK
TEO.SDK for .NET 6+. Planned — not yet available.
Coming soon
This SDK is on the roadmap. For now, use the TypeScript SDK or call the REST API directly.
Search
var result = await teo.Flight.SearchAsync(new FlightSearchInput {
Origin = "JFK",
Destination = "LHR",
DepartureDate = "2026-08-15",
ReturnDate = "2026-08-22",
Cabin = "business",
Travelers = new Travelers { Adults = 1, Children = 0, Infants = 0 },
Type = "both", // "cash" | "award" | "both"
});
foreach (var opt in result.Options) {
Console.WriteLine($"{opt.Id} {opt.TotalPrice} {opt.AwardPrice} {opt.Cabin}");
}Other SDKs
TypeScript, Python, Go, Java, PHP.