Files
vuelato/proto/inspirations.proto
Alejandro Martinez b8906efc80
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled
Initial commit: Vuelato - buscador de vuelos
Nuxt 4 + Supabase + Flightics API. Incluye búsqueda de vuelos,
inspiraciones, watchlist, tracking de precios y mapa interactivo.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 23:37:06 +02:00

24 lines
673 B
Protocol Buffer

syntax = "proto3";
package inspirations.v1;
service InspirationService {
rpc GetInspirationsV1 (InspirationsRequest) returns (InspirationsResponse);
}
message InspirationsRequest {
string locale = 1; // e.g. "en"
repeated string start_locations_codes = 2; // e.g. ["LEI", "GRX", "MLN"]
}
message InspirationsResponse {
bytes unknown1 = 1; // empty in observed responses
repeated InspirationItem items = 2;
}
message InspirationItem {
string from = 1; // departure airport IATA e.g. "LEI"
repeated string stops = 2; // destination airports e.g. ["LGW", "DBV", "FCO"]
double min_price = 3; // e.g. 119.25
}