Docs / SDKs / Java
Java SDK
com.teo:sdk for Java 11+. 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
FlightSearchResult result = teo.flight().search(FlightSearchInput.builder()
.origin("JFK")
.destination("LHR")
.departureDate("2026-08-15")
.returnDate("2026-08-22")
.cabin("business")
.travelers(Travelers.builder().adults(1).children(0).infants(0).build())
.type("both") // "cash" | "award" | "both"
.build());
result.getOptions().forEach(o ->
System.out.println(o.getId() + " " + o.getTotalPrice() + " " + o.getAwardPrice()));Other SDKs
TypeScript, Python, Go, PHP, .NET.