{"openapi":"3.1.0","info":{"title":"e-Slovénie API","description":"Read-only API of e-Slovénie, the French and English travel guide to Slovenia by Patrick Faust (expat in Slovenia since 2004): article search and full content, destination guides, restaurant reviews, travel FAQ.","version":"1.0.0","contact":{"email":"contact@e-slovenie.com","url":"https://www.e-slovenie.com"}},"servers":[{"url":"https://mcp.e-slovenie.com"}],"paths":{"/api/search":{"get":{"operationId":"searchArticles","summary":"Search travel articles","parameters":[{"name":"q","in":"query","required":true,"description":"Search terms","schema":{"type":"string"}},{"name":"lang","in":"query","description":"Content language (default fr)","schema":{"type":"string","enum":["fr","en"]}},{"name":"limit","in":"query","description":"Max results (1-20, default 5)","schema":{"type":"number"}}],"responses":{"200":{"description":"Matching articles with title, date, excerpt, URLs"}}}},"/api/articles/{slug}":{"get":{"operationId":"getArticle","summary":"Full article content as Markdown","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Article metadata and full Markdown content"}}}},"/api/destinations":{"get":{"operationId":"listDestinations","summary":"List the 16 destination guides","parameters":[{"name":"lang","in":"query","description":"Content language (default fr)","schema":{"type":"string","enum":["fr","en"]}}],"responses":{"200":{"description":"Destinations with name, region, description, URL"}}}},"/api/destinations/{slug}":{"get":{"operationId":"getDestination","summary":"Full destination guide","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Destination facts, GPS, Markdown content and FAQ"}}}},"/api/restaurants":{"get":{"operationId":"searchRestaurants","summary":"Search restaurant reviews","parameters":[{"name":"q","in":"query","description":"Free-text search","schema":{"type":"string"}},{"name":"ville","in":"query","description":"City or destination filter","schema":{"type":"string"}},{"name":"lang","in":"query","description":"Content language (default fr)","schema":{"type":"string","enum":["fr","en"]}},{"name":"limit","in":"query","description":"Max results (1-30, default 10)","schema":{"type":"number"}}],"responses":{"200":{"description":"Reviews with rating, price range, specialities and insider tip"}}}},"/api/faq":{"get":{"operationId":"getTravelFaq","summary":"Practical travel FAQ","parameters":[{"name":"q","in":"query","description":"Keyword filter","schema":{"type":"string"}},{"name":"lang","in":"query","description":"Content language (default fr)","schema":{"type":"string","enum":["fr","en"]}}],"responses":{"200":{"description":"Questions and answers by category"}}}}}}