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
Create a working booking system: customer calls → AI answers → appointment booked → confirmation SMS sent. Uses Voice AI + Calendar + CRM.
Steps:
- Create API key and install CLI
- Configure your phone number for Voice AI
- Set up business hours and service areas
- Create a booking form with the API
- 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
New lead comes in → AI scores it → sends personalized text within 60 seconds → enrolls in drip sequence → books appointment. Zero manual work.
Steps:
- Set up a lead capture form
- Configure lead scoring rules
- Create a drip sequence (3 texts over 5 days)
- Wire the webhook: lead.created → score → text → drip
- 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
Create a proposal with line items, send it to your customer, and collect payment via Stripe — all through the API.
Steps:
- Create a proposal with line items
- Send it to the customer (email with public link)
- Customer views, accepts, and pays
- 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
Embed a custom chat widget on any website that talks to your AI assistant (ADA). Uses your Knowledge Base for answers.
Steps:
- Create a chat endpoint with your API key
- Build a simple HTML/JS chat widget
- Connect to the /chat/message API
- Add your Knowledge Base entries for context
- Deploy on any website
Key endpoints: POST /api/v1/chat/messageGET /api/mcp/kb
Connect Thumbtack Leads to Your CRM
Automatically import Thumbtack leads into your CRM, score them, and have AI call them back within 5 minutes.
Steps:
- Connect your Thumbtack account in Integrations
- Configure lead import rules
- Set up auto-acknowledge (AI responds within seconds)
- Configure Voice AI callback (AI calls the lead)
- 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
Tell ADA about your business and she generates a complete website with SEO, contact forms, booking, and payment links.
Steps:
- Log into the dashboard
- Go to Website → Design Center
- Tell ADA about your business
- AI generates pages, content, and SEO metadata
- 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)
Use the CLI to provision and manage multiple client businesses. Each gets their own CRM, AI agents, website, and branding.
Steps:
- Install the CLI: npm i -g @solidnumber/cli
- Authenticate: solid auth login
- Provision a client: solid provision
- Configure their industry and KB
- Deploy their website and AI agents
- 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