The same funnels as direct HTTP, one command per step, built for both people and agents.
Install
curl -fsSL https://docs.wego.com/cli/install | bash
This deploy installs the wego binary (wego in production, wegostaging on staging). The reference below writes it as wego.
wego login opens your browser and stores the token locally. Every command prints JSON on stdout, so each step’s output threads into the next step’s arguments (pipe through jq).
Commands
| Command | Does |
|---|---|
wego login / wego logout |
Browser login (PKCE); remove stored credentials |
wego whoami |
Print the authenticated user |
wego places "<query>" |
Resolve free text to airport and city codes |
wego flights search <from> <to> <date> |
Create a flight search, print the first snapshot |
wego flights results <searchId> |
Read a fresher ranked snapshot |
wego flights trip <tripId> --search <searchId> |
Full itinerary and fares for one trip |
wego flights fares <fareId> |
Fare options (Saver, Flex and similar) for a Wego fare |
wego flights booking-link <fareId> ... |
Print the wego.com booking URL |
wego hotels search <city> <checkIn> <checkOut> |
Create and settle a hotel search |
wego hotels results <searchId> |
Read a fresher page |
wego hotels details <hotelId> |
Static hotel detail |
wego hotels rooms <hotelId> --search <searchId> |
Rooms and rates, cheapest first |
wego hotels booking-link <hotelId> --rate <rateId> |
Print the wego.com checkout URL |
wego skill install |
Install the agent skill into your coding agent |
Run wego help for every flag. The two chains:
flights: search -> results -> trip -> fares -> booking-link
hotels: search -> results -> rooms -> booking-link