Integrate lex-aero into your own applications
The lex-aero API gives developers and organisations programmatic access to the same hybrid search and AI-powered answer engine that powers the chat interface. Query EASA regulations, ICAO Annexes, and national aviation legislation (including Dutch law) from any application — EFB systems, compliance dashboards, document management tools, or custom workflows.
The API will follow REST conventions and return JSON. Authentication uses API keys passed via the Authorization: Bearer <key> header.
# Search endpoint
POST https://api.lex-aero.eu/v1/search
Authorization: Bearer <your-api-key>
Content-Type: application/json
{
"query": "FCL.055 language proficiency requirements",
"source_filter": "EASA", // "EASA" | "ICAO" | "NL" | null
"top_k": 5 // number of source chunks to return
}
# Response
{
"answer": "...",
"sources": [
{
"source": "EASA",
"document": "Part-FCL",
"version": "v2023/1595",
"article_nr": "FCL.055",
"content": "...",
"score": 0.94
}
],
"conversation_id": "uuid"
}Enter your email and we will reach out as soon as the API is available.