Developers
A clean REST + JSON API over your customers, jobs, routes, messages, and payments. Keyset-paginated, idempotent, webhook-driven. Currently in private beta — public v1 lands later this year.
Authenticate with a per-org bearer token. Everything is JSON, everything is keyset-paginated.
curl https://api.binbros.app/v1/customers \
-H "Authorization: Bearer $BINBROS_TOKEN" \
-H "Accept: application/json"
# Paginated response
{
"data": [ ... ],
"page": {
"next": "eyJpZCI6IjAxSC4uLiJ9",
"prev": null
}
} /v1/customers List customers (keyset paginated). /v1/customers Create a customer with addresses and service plan. /v1/jobs List scheduled or completed jobs in a date range. /v1/jobs Create a one-off job and place it on a route. /v1/routes/:date Get the optimized route for a date / region. /v1/messages Send a templated SMS to a customer (respects quiet hours). /v1/webhooks Subscribe to job, payment, and message events. Full reference and OpenAPI spec ship with the public v1. Beta partners get them today.