Integrations
How each consumer app uses culture-api -- with live sandbox links
iOS app for cultural discovery. Users see nearby events, films, concerts, exhibitions with critic opinions from 40+ Radio France podcasts. The app uses delta sync for events and streams trending podcast content on the home feed.
/api/events
Nearby events with delta sync for the current week
GET /api/events?lat=48.85&lng=2.35&radius_km=5&from=2026-04-08&to=2026-04-15&limit=20Try in Sandbox
/api/podcasts/episodes
Trending content -- latest podcast episodes
GET /api/podcasts/episodes?limit=50Try in Sandbox
/api/seances
Cinema seances near the user's location
GET /api/seances?lat=48.85&lng=2.35&radius_km=3&from=2026-04-08&limit=10Try in Sandbox
/api/oeuvres/:id
Oeuvre detail with critic opinions from Radio France podcasts
GET /api/oeuvres/:idTry in Sandbox
/api/recommendations/:oeuvreId
Similar recommendations scored by embedding, curator authority, temporal decay, and proximity
GET /api/recommendations/:oeuvreId?lat=48.85&lng=2.35&limit=10Try in Sandbox
Luxury hotel booking site. Shows guests what to do during their stay -- restaurants, cultural events, and marquee events worth booking for. Queries are anchored to the hotel location in Aix-en-Provence and scoped to the guest's stay dates.
/api/events
Events during a guest's stay near the hotel in Aix-en-Provence
GET /api/events?lat=43.53&lng=5.45&radius_km=20&from=2026-06-15&to=2026-06-22Try in Sandbox
/api/events
Big events worth booking for, sorted by popularity over the summer
GET /api/events?lat=43.53&lng=5.45&radius_km=50&sort=popular&from=2026-05-01&to=2026-08-31&limit=10Try in Sandbox
/api/venues
Restaurants near the hotel for guest dining recommendations
GET /api/venues?lat=43.53&lng=5.45&radius_km=2&venue_type=restaurant&limit=10Try in Sandbox
iOS app for parents. Matches cultural recommendations to children's school curriculum -- a 6eme studying Greek mythology gets an exhibition at the Louvre and a Nota Bene episode. Supports multi-child batch queries for family outing detection.
/api/recommendations
Curriculum-matched recommendations for a 6eme student studying Greek mythology
POST /api/recommendations
{
"topics": ["mythologie", "Odyssee"],
"age_min": 11,
"age_max": 12,
"context": "educational"
}
Try in Sandbox
/api/events
Educational events near Paris filtered by topic
GET /api/events?lat=48.85&lng=2.35&radius_km=10&limit=10Try in Sandbox
/api/podcasts/episodes
Podcast episodes relevant to school curriculum topics
GET /api/podcasts/episodes?limit=10Try in Sandbox