api_lp_hero_title_part1 api_lp_hero_title_highlight
api_lp_hero_subtitle
api_lp_hero_tagline
{
"duration": 17,
"title": "Product Demo - Acme Corp",
"description": "Discuss pricing...",
"attendee": {
"email": "john@acme.com",
"name": "John Smith"
}
}"api_lp_hero_quote"
api_lp_friction_title
api_lp_friction_subtitle
"I need a 17 minute call to discuss the API integration."
User via Voice Bot
Meeting type "17min" not found. Available types:
Rigid Template System
"...I guess 30 minutes then?" 😕
13 minutes wasted
Calendar Allocation
Poor User Experience
User forced into predefined meeting type. Admin must create new types manually.
api_lp_friction_callout
api_lp_wall_title
api_lp_wall_subtitle
api_lp_wall_competitor_title
api_lp_wall_competitor_result
api_lp_wall_meetergo_title
meetergo APIapi_lp_wall_meetergo_result
api_lp_wall_cta_title
api_lp_wall_cta_description
api_lp_features_title
api_lp_features_subtitle
api_lp_feature_1_title
api_lp_feature_1_description
api_lp_feature_2_title
api_lp_feature_2_description
api_lp_feature_3_title
api_lp_feature_3_description
api_lp_feature_4_title
api_lp_feature_4_description
POST /admin/users
{
"email": "...",
"plan": "pro"
}api_lp_features_cta_title
api_lp_features_cta_subtitle
api_lp_code_title
api_lp_code_subtitle
api_lp_code_step_1_title
api_lp_code_step_1_description
api_lp_code_step_2_title
api_lp_code_step_2_description
api_lp_code_step_3_title
api_lp_code_step_3_description
api_lp_code_step_4_title
api_lp_code_step_4_description
1// Step 1: Query availability (<100ms response)
2const slots = await meetergo.availability.get({
3 duration: 17, // Any minute value
4 hostId: "agent_01"
5});
6
7// Step 2: Bot proposes time, user accepts
8// Step 3: Create booking with context
9const booking = await meetergo.booking.create({
10 start: slots[0].start,
11 duration: 17,
12 title: "Product Demo - Acme Corp",
13 description: "Discuss enterprise pricing",
14 attendee: {
15 email: "john@acme.com",
16 name: "John Smith"
17 }
18});
19// Returns: { id, calendar_link, status: "confirmed" }api_lp_wl_title
api_lp_wl_subtitle
api_lp_wl_step_1_title
api_lp_wl_step_1_description
await meetergo.users.create({
email: "user@client.com",
tier: "pro_plan",
timezone: "Europe/Berlin"
});api_lp_wl_step_2_title
api_lp_wl_step_2_description
All supported providers
userId={user.id} onSuccess={...}
api_lp_wl_step_3_title
api_lp_wl_step_3_description
api_lp_faq_title
api_lp_faq_subtitle
api_lp_faq_1_answer
api_lp_faq_2_answer
api_lp_faq_3_answer
api_lp_faq_4_answer