Developer platform · Network plan
Raw Mapbox renders a map. It does not host your data, geocode your addresses, give your team an admin UI, or handle filtering, embedding, and lead capture. Saw Your Sign is all of that, behind a REST API, a JavaScript SDK, live data bridges, an MCP server, and an agent skill.
$curl https://sawyoursign.com/api/v1/openapi.jsonBring your data, or host it with us, and ship a branded, filterable, embeddable map. Each piece is documented and live today.
Ways in
Send a record and we geocode it and place the pin. Drop the SDK or the typed React components onto any page and steer the map from your own UI. Or hand a scoped token to an MCP client and let an agent read the workspace.
curl -X POST https://sawyoursign.com/api/v1/records \
-H "Authorization: Bearer sys_live_t_…" \
-H "Idempotency-Key: job_5821" \
-H "Content-Type: application/json" \
-d '{
"title": "Roof replacement",
"record_type": "job",
"address": { "line1": "412 Birch Rd", "city": "Providence", "state": "RI" }
}'
→ 201 pin created, geocoded & liveData bridges
A data bridge points a map straight at your source. Pins resolve at request time, so edits and new rows show up with nothing copied and no import to keep in sync. Visitors can only filter the fields you allowlist, and your credentials never reach the browser.
# connect a Google Sheet, no developer
source = "https://docs.google.com/…/edit"
columns = { title, lat, lng, brands[], rating }
# the map reads it live
GET /m/{token}/pins?bbox=…
→ 14,697 pins (cached 60s, filtered server-side)
→ edits in the sheet show up. nothing copied.