Skip to content
The service request

The pothole report becomes a typed case record by morning.

A streetlight goes dark on a Tuesday and the resident starts typing, not calling, because the 311 line is a hold queue. Five questions later a case record is waiting for the public works crew: what it is, exactly where, and whether it is urgent enough to jump the line. Free to start, live in five minutes.
Build this agent free

You automate government service requests by putting a conversational agent in front of citizen intake. It asks for the issue, the location, and whether it looks urgent, one question at a time, types the answers into a structured case record, and posts it to your 311 system or CRM before anyone calls back.

01 · They talk

Your chatbotAnswering
What can we help with today?
The streetlight outside 214 Maple has been out for a week
Got it. Is it the only one out, or are several dark on that block?
Just the one, but it’s right by the crosswalk so it feels unsafe at night

02 · It becomes a record

issue_category
Streetlight outage
location_address
214 Maple Street, near the crosswalk
safety_hazard
Flagged as a hazard, priority queue
reporter_phone
Not given

typed · validated · deduped

03 · Your stack acts

  • Public works channel pinged
  • Zap into your 311 system
  • Straight to your CRM
  • Signed webhook at your endpoint
The process

The process this page is about

Not "AI for government". One process, the one that decides whether a resident’s report becomes a work order or disappears into a queue: the service request, logged the moment something is wrong, before anyone has spoken to a person.
  • Who starts it

    A resident who found a pothole, missed a collection, or is standing next to a streetlight that has been dark for a week, usually on a phone, usually not during office hours.

  • What it costs today

    A 311 line that logs the request and gives nothing back, or a web form that asks the same six fields whether the issue is a dead light or a downed tree, with no way to flag which one needs a crew today.

  • What it has to produce

    A typed case record: what the issue is, exactly where it is, whether it looks like an immediate hazard, and a way to reach the resident if the crew needs more.

72%

of NYC 311 requesters were dissatisfied with how their case was followed up

NYC OSC 311 Monitoring Report, 2026

The schema

What it asks, and what it never asks

You name the fields your case management system already has. It does the asking, in whatever order the report comes out, and it keeps asking until the required ones are filled.
FieldTypeRequiredWhy it is there
issue_categorytextYesWhat the crew needs to know before they roll
location_addresstextYesWhere the crew actually goes
descriptiontextYesThe detail that turns a guess into a work order
safety_hazardbooleanYesRoutes an active hazard to the front of the queue
reporter_nametextOptional, only if they want a callback
reporter_phonephoneHow the township follows up, if at all

And what it will not do

  • It never determines whether a resident is eligible for a permit, an exemption, or a benefit program. That is a staff decision, every time.
  • It never gives legal or tax advice, even when asked directly.
  • It never confirms a deadline, a processing time, or when a crew will show up.
  • It never promises a refund, a credit, or a specific resolution to a complaint.
  • The moment anything sounds like an active emergency, a downed line, a gas smell, a water main break, it stops asking questions and says to call 911 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 constituent services desk actually handles, each running its own agent with its own fields. Pick one and answer it the way a real resident would, out of order and mid-frustration, and watch it ask the follow-up instead of accepting the blank.
Open this one full screen
Where the records land

What the constituent services desk opens in the morning

Every conversation that produced something useful arrives here as a row a staff member 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

211 collected34 this week6 need attention

Export CSV
  • Marisol Delgado Streetlight, flagged hazard311 Service Request · 1h ago
  • Owen Whitfield Downed line, escalated to 911Emergency Hazard Line · 3h ago
  • Priya Anand Deck permit, pre-checkPermit Pre-Check · Yesterday
  • Dana Ferreira Park redesign, re-engagedConsultation Re-Engagement · Yesterday
  • Tom Whitfield Water bill disputeCase Follow-Up · Fri

Marisol Delgado

Captured 1h ago · 311 Service Request · joina.chat

Captured data 4 of 6 fields

issue_categoryStreetlight outage
location_address214 Maple Street, near the crosswalk
descriptionBeen out about a week, right by the crosswalk
safety_hazardtrue
reporter_nameNot captured
reporter_phoneNot captured

From the conversation

“It’s right by the crosswalk, so it feels unsafe once it’s dark out , not just an inconvenience.”

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 311 system or CRM gets the case, 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 township 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": "Service request",
  "record_id": 1234,
  "attributes": {
    "issue_category": "Streetlight outage",
    "location_address": "214 Maple Street, near the crosswalk",
    "description": "Been out about a week, right by the crosswalk",
    "safety_hazard": "true"
  }
}
  • Two events

    data.collected fires the first time Gnosari captures a new case. data.updated fires when a resident adds or 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 case.

  • Quotes are opt-in

    The provenance block, the resident’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 case management system.

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

    • Salesforce
    • Airtable
    • Sheets
    • Mailchimp
  • Straight to the desk

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

    No middleman. The public works crew sees the case before the queue does.

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

    Give us an https address, verify the signature, open the case 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. Accela, CivicPlus, Granicus and a homegrown case management system 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 case.

Two ways it can look

On your township’s site, or a link a resident texts back

Both are live right now. The widget in the corner takes a service request from someone reading your public works page. The link is what a resident opens from a text or a QR code on a utility pole, and it works after the office closes.
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 311 hold queue and the PDF form nobody finishes.
What changes311 hold queuePDF or web intake formGnosari
After hoursVoicemail, or nothingDownloaded, never returnedAnswered, typed, delivered
What you get backA case number, if they waitWhatever fitted in the boxesThe issue in their own words
Half-told storyStaff call back to askSubmitted half emptyIt asks the follow-up
An active hazardDepends who answeredSits in the same queueStopped immediately, sent to 911
Gets into your case systemRe-typed by handExport nobody can filterSigned webhook, the moment it is complete
The eligibility 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 case management system already has, point the agent at your public works or constituent services pages, and put the link on your site. The agent runs the conversation, produces a typed case record, and posts it to your 311 system or CRM through a webhook, Zapier or Make. Setup is minutes, not an implementation project.

Five minutes from now your service requests could be arriving typed.

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