Skip to main content
Revenue Sol gives you public, embeddable surfaces you can put on your own website or send to customers. They use scoped public keys or single-purpose tokens — never secret API keys — so they’re safe to expose on a public page.

Review widget

Show your best reviews on your website. The widget fetches a public testimonials feed identified by your widget key and only returns your highest-rated reviews.
1

Get your widget key & snippet

In the reviews/widget settings, copy your embed snippet (it includes your public widget key).
2

Paste it on your site

Add the snippet where you want testimonials to appear.
The feed is served from GET /api/public/reviews?key=<widgetKey> with permissive CORS so it can load on any site. It exposes only public, high-rated review content — no customer data or secrets.

Web-chat widget

Add a chat widget so website visitors can message you; conversations land in your unified inbox.
1

Copy the web-chat snippet

Grab the snippet from your website/chat settings (it carries your public widget key).
2

Embed it on your site

Visitor messages are submitted to POST /api/public/webchat with your widget key and routed to your inbox.
Share a public booking page so customers can self-schedule.
  • Public page: app.revenuesol.com/book/<your-slug>
  • Backing endpoints: GET /api/public/booking/<slug> (appointment types), GET /api/public/booking/<slug>/slots (availability), POST /api/public/booking/<slug> (create a booking)
The slug is public by design; no token is required to view and book. These are generated by Revenue Sol and sent to a specific customer:
LinkPurposeEndpoint
Payment linkPay one specific invoicePOST /api/public/pay/<token>
Quote linkApprove/decline one specific quotePOST /api/public/quote/<token>/respond
Intake/request formSubmit a public intake formPOST /api/public/request/<slug>
Payment and quote tokens are single-purpose — a token only allows acting on the one invoice or quote it was issued for, and tokens can expire. They are not reusable API keys.

Summary

Public widget key

Used by the review widget and web-chat. Safe to embed; exposes only public data.

Public slug

Used by booking and intake pages. Identifies your business publicly.

Scoped token

Used by payment and quote links. Single-purpose and may expire.

No API keys

There is no general-purpose API key system. See For Developers.