Skip to main content
← Back to Docs

Tutorials

Step-by-step guides for building real things with SolidNumber. Copy the code. Run it. Ship it.

Build a Plumber Booking App in 20 Minutes

Beginner20 min

Create a working booking system: customer calls → AI answers → appointment booked → confirmation SMS sent. Uses Voice AI + Calendar + CRM.

Voice AICalendarCRMSMS

Steps:

  1. Create API key and install CLI
  2. Configure your phone number for Voice AI
  3. Set up business hours and service areas
  4. Create a booking form with the API
  5. Test with a real phone call

Key endpoints: POST /api/v1/voice/configurePOST /api/v1/calendar/appointmentsPOST /api/v1/sms/send

Automate Lead Follow-Up with AI

Intermediate15 min

New lead comes in → AI scores it → sends personalized text within 60 seconds → enrolls in drip sequence → books appointment. Zero manual work.

LeadsSMSDrip SequencesAI

Steps:

  1. Set up a lead capture form
  2. Configure lead scoring rules
  3. Create a drip sequence (3 texts over 5 days)
  4. Wire the webhook: lead.created → score → text → drip
  5. Test with a form submission

Key endpoints: POST /api/v1/crm/leads/submissionsPOST /api/v1/sms/sendPOST /api/v1/drip/enroll

Send an Invoice and Collect Payment

Beginner10 min

Create a proposal with line items, send it to your customer, and collect payment via Stripe — all through the API.

ProposalsInvoicesPaymentsStripe

Steps:

  1. Create a proposal with line items
  2. Send it to the customer (email with public link)
  3. Customer views, accepts, and pays
  4. Check payment status via API

Key endpoints: POST /api/v1/proposalsPOST /api/v1/proposals/{id}/sendPOST /api/v1/proposals/{id}/checkout

Build a Custom AI Chat Widget

Intermediate15 min

Embed a custom chat widget on any website that talks to your AI assistant (ADA). Uses your Knowledge Base for answers.

ChatAIKnowledge BaseEmbed

Steps:

  1. Create a chat endpoint with your API key
  2. Build a simple HTML/JS chat widget
  3. Connect to the /chat/message API
  4. Add your Knowledge Base entries for context
  5. Deploy on any website

Key endpoints: POST /api/v1/chat/messageGET /api/mcp/kb

Connect Thumbtack Leads to Your CRM

Intermediate20 min

Automatically import Thumbtack leads into your CRM, score them, and have AI call them back within 5 minutes.

ThumbtackCRMVoice AILeads

Steps:

  1. Connect your Thumbtack account in Integrations
  2. Configure lead import rules
  3. Set up auto-acknowledge (AI responds within seconds)
  4. Configure Voice AI callback (AI calls the lead)
  5. Monitor in the Leads dashboard

Key endpoints: POST /api/v1/integrations/thumbtack/connectGET /api/v1/crm/leads/submissions

Generate a Website with AI in 5 Minutes

Beginner5 min

Tell ADA about your business and she generates a complete website with SEO, contact forms, booking, and payment links.

CMSAIWebsiteSEO

Steps:

  1. Log into the dashboard
  2. Go to Website → Design Center
  3. Tell ADA about your business
  4. AI generates pages, content, and SEO metadata
  5. Publish — live on your custom domain

Key endpoints: POST /api/v1/cms/pagesPOST /api/v1/cms/pages/{id}/publish

Build an Agency Dashboard (White Label)

Advanced30 min

Use the CLI to provision and manage multiple client businesses. Each gets their own CRM, AI agents, website, and branding.

CLIAgencyMulti-TenantWhite Label

Steps:

  1. Install the CLI: npm i -g @solidnumber/cli
  2. Authenticate: solid auth login
  3. Provision a client: solid provision
  4. Configure their industry and KB
  5. Deploy their website and AI agents
  6. Monitor all clients from one dashboard

Key endpoints: solid provisionsolid kb syncsolid sites deploy

Want a tutorial we haven't written?

Tell us what you're building. We'll write the guide.

Request a Tutorial
Tutorials — Build with SolidNumber | Developer Docs | SolidNumber