The Free Time
Intelligence API

Activities. Events. Places. One API. Give your AI agent the power to understand and plan free time.

View docs
0
Activities
0
Places
0
Events

Try it right now

No signup needed. Search anything.

Rich, structured free time data

Everything your AI needs to make great recommendations.

Activities

Categorized activities with personality traits, emotions, weather prefs, age ratings, and semantic embeddings.

{ "name": "Bouldering", "categories": ["Physical"], "met": [4, 8], "beginner_friendly": true }

Events

Live events with dates, pricing, venues, tags, and rich metadata.

{ "name": "Sunset Yoga", "cost": 0, "date": "2026-03-15T18:00", "place": "Donaupark" }

Places

Venues with geo, hours, pricing, indoor/outdoor, accessibility, and linked activities.

{ "name": "Kletterhalle Wien", "lat": 48.21, "lng": 16.37, "indoor": true }

Scoring

AI-powered scoring engine that matches activities to user preferences, mood, weather, and context.

{ "activity": "Bouldering", "score": 0.92, "semantic": 0.85, "iga": 0.95 }

Integrate in minutes

Two paths. Pick what fits.

OpenClaw

recommended
openclaw
# Install the Movent skill
$ clawhub install movent/free-time

# Use it in chat
You: Find something fun for tonight
Claw: Found 3 options near you...

REST API / MCP

# Search activities
$ curl -s \
  https://api.movent.ai/v1/search?q=date+night \
  -H "Authorization: Bearer $API_KEY" | jq

# Response
{
  "activities": [{ "name": "Wine Tasting", "score": 0.94 }],
  "events": [{ "name": "Jazz Evening", "cost": 15 }],
  "places": [{ "name": "Kleinod Bar" }]
}
const res = await fetch(
  "https://api.movent.ai/v1/search?q=date+night",
  { headers: { Authorization: `Bearer ${API_KEY}` } }
);

const { activities, events, places } = await res.json();
console.log(activities[0].name); // "Wine Tasting"
import requests

resp = requests.get(
  "https://api.movent.ai/v1/search",
  params={"q": "date night"},
  headers={"Authorization": f"Bearer {API_KEY}"}
)

data = resp.json()
print(data["activities"][0]["name"]) # "Wine Tasting"

What you can build

Free time data for any AI-powered experience.

AI Agents

Give your agent real-world context. It can suggest activities, find events, and book places based on user preferences.

OpenClaw Skills

Build an OpenClaw skill that plans weekends, suggests date nights, or finds kid-friendly activities near the user.

Chat Assistants

Power a chatbot that answers "what should I do tonight?" with real, local, up-to-date answers.

Recommendation Engines

Build personalized recommendations using our scoring API. Mood, weather, budget, group size — all factored in.