Documentation

Find Answers Instantly

Every SlashExperts help guide, in one place. Search the knowledge base or browse by category — articles open in our help center.

30 guides 24 with video walkthroughs Updated January 2026
Knowledge base

Browse by Category

30 guides organised by topic, straight from the SlashExperts help center

For developers

Build with the SlashExperts API

Programmatic access to bookings, experts, and events. Authenticate with a token, call the REST API, and subscribe to webhooks to keep your systems in sync.

create_booking.sh
# Create a booking via the REST API
curl -X POST https://api.slashexperts.com/v1/bookings \
  -H "Authorization: Bearer $SE_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "expert_id": "exp_8Kd2",
    "prospect_email": "buyer@acme.com",
    "source": "website_widget"
  }'

# → 201 Created
{ "id": "bk_19Xa", "status": "confirmed" }
FAQ

Frequently asked questions

How long does it take to get set up?

Most teams are live within a day. Account setup takes minutes, and embedding the booking system is just a few lines of code. The Setting Up Your Experts Program collection walks through it end to end.

Do you integrate with my CRM?

Yes — native Salesforce and HubSpot syncs, so every expert conversation is tracked back to the right record.

How do experts get onboarded?

You invite happy customers and they opt in, set their expertise and availability, and connect a calendar. See Understanding Your Expert's Onboarding Journey for the full picture.

Where can I put the booking system?

Anywhere you can paste HTML. There are dedicated guides for standard HTML, Webflow modals, and HubSpot CMS.

Where can I get help?

Email help@slashexperts.com and we'll come back to you, or book a call with the team. The general FAQs cover most day-to-day questions.