Skip to content
The pre-visit intake

The after-hours message becomes a typed patient record by morning.

A dog stops eating on a Sunday and the owner starts typing, not calling, because the line only reaches voicemail. Six questions later a patient record is waiting for the vet on Monday: the symptom in the owner’s own words, when it started, and whether it is eating or drinking. Free to start, live in five minutes.
Build this agent free

You automate veterinary intake by putting a conversational agent in front of the pre-visit conversation. It asks for the pet, the species and breed, and the reason for the visit one question at a time, types the answers into a structured patient record, and posts that record to your practice software before anyone calls back.

01 · They talk

Your chatbotAnswering
What’s going on with your pet today?
She’s a 3 year old Lab, hasn’t eaten since yesterday and seems really tired
Understood. Has she been drinking water, and any vomiting or diarrhea?
She threw up once this morning, no diarrhea, barely drinking

02 · It becomes a record

pet_name
Bella
species
Dog, Labrador
reason_for_visit
Not eating since yesterday, vomited once
vaccination_status_known
Not sure, will check the folder

typed · validated · deduped

03 · Your stack acts

  • Front desk pinged
  • Zap into your practice software
  • Or the same via Make
  • Signed webhook at your endpoint
The process

The process this page is about

Not "AI for vets". One process, the one that decides whether a worried pet parent reaches your clinic or the next one on the search results: the pre-visit intake, the message that arrives before anyone has spoken to a person.
  • Who starts it

    Someone whose pet will not eat, is limping, or is due a vaccine they cannot quite remember the date of, usually on a phone, usually not during opening hours.

  • What it costs today

    A phone line that goes to voicemail during the 4 to 6 hours a day staff spend on scheduling calls, or a PDF intake form that asks about medications the same way for a healthy two year old and a fourteen year old with three conditions.

  • What it has to produce

    A typed patient record: the pet, the species and breed, the reason for the visit, whether vaccines are current, and anything urgent enough to need a vet today rather than next week.

85%

of callers who reach voicemail never call back - they call the next clinic instead

PeerLogic

The schema

What it asks, and what it never asks

You name the fields your intake form already has. It does the asking, in whatever order the story comes out, and it keeps asking until the required ones are filled.
FieldTypeRequiredWhy it is there
owner_full_nametextYesIdentity on the patient record
phonephoneYesHow the clinic calls back
pet_nametextYesWhich patient this is about
speciestextYesRoutes to the right care, and the right vet
breedtextYesHandling and dosing context
reason_for_visittextYesThe chief complaint, in their own words
vaccination_status_knownbooleanWhether records need chasing before the visit
symptom_onsettextTiming a vet will check, never the agent
insurance_providertextFeeds the eligibility check, never a coverage promise
behavioral_notestextHandling notes before anyone touches the pet

And what it will not do

  • It never diagnoses, and never says whether a symptom is serious, minor or nothing to worry about.
  • It never gives a treatment, medication or dosage suggestion, for the pet or anyone else.
  • It never confirms or estimates whether a plan is accepted or what a procedure costs.
  • It never treats a vaccine date recalled from memory as verified. The clinic checks the file.
  • The moment anything sounds like an emergency, it stops asking questions and says to call now.
  • It never invents a field. If they did not say it, the record says "Not captured" instead of a guess.
The live run

Try the run yourself

Six situations a front desk actually handles, each running its own agent with its own fields. Pick one and answer it the way a real pet parent would, out of order and mid-worry, and watch it ask the follow-up instead of accepting the blank.
Open this one full screen
Where the records land

What the front desk opens in the morning

Every conversation that produced something useful arrives here as a row a vet tech can read in two seconds. Every value keeps the sentence it came from, and anything the agent itself said can never become your data.

Collected data

164 collected21 this week4 need attention

Export CSV
  • Priya Anand New patient, Lab mixNew Patient Registration · 1h ago
  • Marcus Webb Not eating, escalatedSame-Day Concern · 3h ago
  • Dana Ferreira Asked about coverNew Client Check · Yesterday
  • Els Bakker Overdue 14 monthsOverdue Check-In · Yesterday
  • Tom Whitfield Boarding cancelledCancelling or Concerned · Fri

Priya Anand

Captured 1h ago · New Patient Registration · joina.chat

Captured data 7 of 8 fields

owner_full_namePriya Anand
phone+1 512 555 0148
pet_nameMilo
speciesDog
breedLabrador mix
reason_for_visitFirst checkup, adopted two weeks ago
vaccination_status_knownNot captured
preferred_appointment_windowWeekday mornings

From the conversation

“We just adopted him two weeks ago, not totally sure what shots he’s had , the shelter mentioned something but I didn’t write it down.”

Every value keeps the sentence it came from, and a value the visitor never said is never stored. The chatbot cannot quote itself into your data.

From here a record can go straight on to Slack, a sheet, a Zap or your own API. The inbox is where you read them, not where they get stuck.

Where it goes next

Your practice software gets the patient, not another login

The moment the intake is complete, Gnosari posts it to whatever address you give it. Signed, versioned and retried. From there it is a webhook, which reaches almost anything a clinic already runs.
POST https://hooks.zapier.com/hooks/catch/1234567/abcdef

Signed headers

webhook-id
msg_2f9a41c8
webhook-timestamp
1786518862
webhook-signature
v1,K7Qd…8xPm

Body

{
  "type": "data.collected",
  "event_id": "1b6f9c02-4d1a-4f7e-9b3c-2a5e8d0f1c44",
  "created_at": "2026-08-11T09:14:22Z",
  "payload_version": "v1",
  "data_kind": "New patient",
  "record_id": 1234,
  "attributes": {
    "owner_full_name": "Priya Anand",
    "phone": "+1 512 555 0148",
    "pet_name": "Milo",
    "species": "Dog",
    "breed": "Labrador mix",
    "reason_for_visit": "First checkup, adopted two weeks ago"
  }
}
  • Two events

    data.collected fires the first time a Gnosari collects a new kind of data. data.updated fires when a pet parent corrects something.

  • Signed, so you can trust it

    Standard Webhooks HMAC-SHA256, with webhook-id, webhook-timestamp and webhook-signature on every request. Verify before it opens a chart.

  • Quotes are opt-in

    The provenance block, the pet parent’s verbatim words, is absent unless you turn it on for that destination.

  • Zapier or Make

    Paste a Catch Hook URL into your Gnosari destination, then point the Zap at your practice software.

    Free tier, no app to install, and it fires the moment the patient record is complete.

    • Salesforce
    • HubSpot
    • Calendly
    • Mailchimp
  • Straight to the desk

    Anything that accepts an incoming webhook takes the payload as it is.

    No middleman. The vet tech sees the intake before the exam room does.

    • Slack
    • Teams
    • Sheets
    • Twilio SMS
  • Your own endpoint

    Give us an https address, verify the signature, open the chart yourself.

    A few lines of code, and the delivery log tells you when something did not land.

    • Postgres
    • Supabase
    • Retool

And you can see every attempt

WhenEventOutcomeDetail
19:04:22data.collectedDelivered200 OK
19:04:18data.collectedFailed503, retrying in 30s
Yesterday 09:37data.updatedDelivered200 OK
Yesterday 07:52data.collectedDelivered200 OK

Every attempt is kept, newest first, with the reason when there is one. Failures retry on their own, and the signing secret lives in your dashboard so you can rotate it without calling anybody.

These are examples, not a partner list. Cornerstone, ezyVet, Shepherd, Vetspire and Digitail are all reachable the same way: through a Zap, or straight to an endpoint you control. If it takes an HTTP request, it takes the chart.

Two ways it can look

On your clinic’s site, or a link you text after a missed call

Both are live right now. The widget in the corner takes the pre-visit intake from someone reading your services page. The link is what you text back to a missed call, and it works before the front desk opens.
chat

The widget on your site

A button in the corner that opens into a conversation. Your logo, your colours, sitting on the pages you already have.

  • One line of HTML, anywhere on your site
  • Bubble, sidebar, sidebar-push or drawer
  • Opens over the page, closes again
conversation

A page of its own

No chat window and no widget. Your headline leads, the thread sits under it, and it reads like you asked rather than like software collecting.

  • Sent as a link, or scanned from a QR
  • Its own headline, caption and greeting
  • Every link counted separately
  • One responsive page: phone, tablet or desktop

Every screen on this page is a published Gnosari, embedded from the app. Type into any of them.

Put it on your site

One snippet, four ways to wear it

Paste one line of HTML anywhere on your site. How the widget sits on the page is a setting, not a rebuild, and you can change it after you ship.

Bubble

display_mode="bubble"

A floating button in the corner. Opens over your page and closes again. The default, and the one nobody has to be taught.

Four corners to choose from

Sidebar

display_mode="sidebar"

A fixed panel down one side, always open. For pages where the conversation is the point rather than an aside.

Left or right, any width

Sidebar push

display_mode="sidebar-push"

The same panel, but your content moves over to make room instead of being covered. Nothing on the page is ever hidden.

Left or right, any width

Drawer

display_mode="drawer"

Slides in over the page when it is called, then slides away. The middle ground between a bubble and a sidebar.

Left or right

Where else it lives

Not every conversation starts on a website

The same Gnosari, reached three other ways. A link, a code, or a piece of paper. All of them land in the same record.

01 · A link you send

joina.chat/l/your-slug

Put it in an email, a text, a booking confirmation or a signature. Each link carries its own opening line and headline, and counts its own visits, so you can tell which channel actually worked.

  • Its own greeting and headline
  • Optional expiry date
  • Counted separately

02 · A code they scan

The same link, printed

Every link comes with a QR. On a table card, a receipt, a delivery note, a door. Someone points a phone at it and the conversation starts, with no app and no typing.

  • PNG or SVG, print resolution
  • Points at the same slug
  • Old printed codes keep working

03 · A flyer you hand over

posters.gnosari.com

A builder for the printed thing itself. Pick a template, restyle it, edit the words on the page and export a print-ready poster or card with the QR already placed.

  • Posters, cards and flyers
  • Print or PNG export
  • No account needed
Whose brand it wears

Your brand, down to the font

Nobody should be able to tell it is us. Start from a curated look, mix your own colour and pattern, or set every design token yourself: every surface follows, from the widget to the conversation page to the link someone opens on their phone.

01 · Start from a preset

Twelve curated looks, each a colour and a background pattern chosen to go together. Pick one and you are done.

  • plainsky · noneCorporate or formal, or let the content lead
  • clean-dotssky · fine-dotsSaaS, B2B, dashboards
  • ocean-wavesocean · wavesWellness, travel, spa
  • forest-topoforest · topographyOutdoors, sustainability, eco
  • blueprintblue · blueprintEngineering, dev tools, architecture
  • graph-paperindigo · graph-paperEducation, finance, analytical
  • circuitteal · circuitTech, hardware, AI, electronics
  • soft-bubblesrose · bubblesFriendly, lifestyle, community, care
  • sunset-glowsunset · blobsCreative, marketing, bold consumer
  • emerald-gridemerald · gridHealth, growth, productivity
  • confettifuchsia · confettiEvents, kids, playful brands
  • mono-noiseviolet · noiseMedia, publishing, premium and minimal

02 · Or mix your own

22 colour themes and 44 background patterns, each drawn in code at four intensities. That is 3,872 combinations before you touch a single token.

22 colour themes

  • purple
  • blue
  • green
  • orange
  • pink
  • indigo
  • cyan
  • rose
  • amber
  • teal
  • fuchsia
  • sky
  • emerald
  • violet
  • sunset
  • ocean
  • forest
  • neon
  • gold
  • coral
  • lavender
  • mint

44 background patterns

  • dots
  • grid
  • diagonal-lines
  • zigzag
  • hexagons
  • triangles
  • diamonds
  • squares-rotated
  • cross-dots
  • plus-signs
  • waves
  • bubbles
  • clouds
  • topography
  • organic-blobs
  • flowing-curves
  • subtle-grid
  • circuit
  • blueprint
  • isometric
  • graph-paper
  • fine-dots
  • confetti
  • stars
  • hearts
  • sparkles
  • paper-texture
  • noise
  • chat-bubbles
  • speech-marks
  • conversation
  • messages
  • emoji-smileys
  • emoji-hearts
  • emoji-stars
  • emoji-thumbsup
  • social-likes
  • social-reactions
  • paint-splatter
  • brush-strokes
  • doodles
  • squiggles
  • party
  • flowers

Every pattern, four intensities

  • subtle
  • light
  • medium
  • strong

03 · Or set every design token

Exact hex values, fourteen fonts, bubble shape per side, corner radius, density, header and input. Explicit tokens always win over the preset. Two chats can share every line of markup and still wear two different brands: only the tokens differ.

A boutique hotel

fontFamily
Playfair Display
colorPrimary
#A16207
colorSurface
#FAF7F2
bubbles.user.radius
xl
radius
lg
Maison AurelOnline
Is late checkout possible on Sundays?
Until 2pm, and there will be coffee waiting downstairs.

A developer tool

fontFamily
JetBrains Mono
colorPrimary
#34D399
colorSurfaceDark
#0D1117
bubbles.user.radius
sm
radius
sm
relaydbOnline
Does the API rate limit per key?
600 requests a minute per key, with bursts to 1,000 for 30 seconds.

fontFamily accepts fourteen faces

  • Inter
  • system-ui
  • Roboto
  • Open Sans
  • Lato
  • Montserrat
  • Poppins
  • Source Sans 3
  • Nunito
  • DM Sans
  • Lora
  • Playfair Display
  • JetBrains Mono
  • Space Grotesk
  • radius: none · sm · md · lg · xl
  • density: compact · comfortable · spacious
  • intensity: subtle · light · medium · strong

Set with one call, or one click in the designer. Changing it later takes the same one call, and every published surface updates at once.

The alternative

Instead of what you do now

The comparison that matters is not against another chatbot. It is against the voicemail and the clipboard at the front desk.
What changesVoicemail and a callbackPDF or web intake formGnosari
After hoursRings outDownloaded, never returnedAnswered, typed, delivered
What you get backA name, if they left oneWhatever fitted in the boxesThe symptom in their own words
Half-told storyStaff call back to askSubmitted half emptyIt asks the follow-up
Vaccine datesWhatever they remember on the phoneA checkbox with no dateRecorded as remembered, flagged to verify
Gets into your practice softwareRe-typed by handCSV, or an integration you pay forSigned webhook, the moment it is complete
The clinical lineDepends who answeredNot applicableNever crossed, and stated at the start
Common Questions

Frequently Asked Questions

Everything you need to know about getting started. Can't find the answer you're looking for? Reach out to our team.

Still have questions?

Our team is here to help you get started.

Name the fields your intake form already has, point the agent at your services pages, and put the link on your site. The agent runs the conversation, produces a typed patient record, and posts it to your practice software through a webhook, Zapier or Make. Setup is minutes, not an implementation project.

Five minutes from now your after-hours messages could be typing themselves up.

Build the agent, put it on your services pages, and watch the first patient record arrive. Free to start, no card.