For Agents
Pull connected-vehicle trips, vehicle data, and geo-zone events for Bouncie-equipped cars and register webhooks across 23 endpoints.
Get started with Bouncie API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list Bouncie vehicle trips"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Bouncie API API.
Retrieve the authenticated user's profile and vehicle inventory
List trips for a user's vehicles with start, end, and distance data
Register, update, and remove webhooks to receive vehicle event pushes
Create and manage application-level geo-zones for fleet-wide alerts
Read user-defined geo-zones tied to an end-user account
GET STARTED
Use for: List the vehicles attached to the authenticated Bouncie user, Get the most recent trips for a specific vehicle, Register a webhook to receive trip-end events for our application, Create an application geo-zone around a customer warehouse
Not supported: Does not handle vehicle remote control, OEM diagnostics, or insurance scoring — use for OBD-II trip, geo-zone, and webhook data on Bouncie-equipped vehicles only.
Jentic publishes the only available OpenAPI document for Bouncie API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Bouncie API, keeping it validated and agent-ready. Bouncie is a connected-vehicle platform built around an OBD-II device that streams trip, location, and diagnostic data from a user's vehicle. The API provides authenticated access to user profiles, vehicle inventories, trip histories, geo-zones, locations, and schedules, plus webhook registration for push events. Integrators register applications on the Bouncie Developer Portal and use OAuth 2.0 user authorization to access end-user vehicle data.
Manage named locations and arrival or departure schedules
Authorize end users via OAuth 2.0 and refresh access tokens
Patterns agents use Bouncie API API for, with concrete tasks.
★ Driving-behaviour insights for a connected app
Auto, insurance, and family-safety apps use Bouncie to give end users insight into where, when, and how they drove. The API exposes /v1/trips for the trip history and /v1/vehicles for the vehicle inventory, so an app can render a daily timeline and per-vehicle stats. Most apps ship the integration in a few days using the OAuth 2.0 authorization code flow.
List the last 10 trips for vehicle id veh_123 and summarise total distance and longest trip
Geo-zone alerts for fleet operations
Light fleet operators use Bouncie's application geo-zones to know when one of their vehicles enters or leaves a customer site. POST /v1/application-geozones/ creates the zone, and webhooks deliver entry and exit events in real time without polling. Setup typically takes a sprint, including webhook signature handling.
Create an application geo-zone named 'Warehouse 5' centred on lat 33.7, lng -84.4 with a 200 metre radius, then register a webhook that receives geo-zone events
Webhook-driven trip ingestion
Telematics apps avoid polling /v1/trips by registering for trip-end webhooks and ingesting each completed trip as it arrives. POST /v1/webhooks subscribes the application's callback URL and PUT /v1/webhooks/{webhookId} adjusts the subscription. Combined with /v1/trips for historical backfill, the app stays in sync without burning the rate budget on polling.
Register a webhook with URL https://example.com/bouncie that subscribes to trip events and confirm the webhook id
Agent-driven vehicle queries via Jentic
An AI agent answers a user's natural-language question ('did my car go to the airport this week?') by calling Bouncie's trip and location endpoints. Through Jentic the agent searches for 'list Bouncie trips', loads the schema, and executes the call while the OAuth access and refresh tokens stay in the Jentic vault.
Search Jentic for 'list Bouncie trips', load the schema, and execute it for the past 7 days, returning trips that ended within 5 km of the user's home location
23 endpoints — jentic publishes the only available openapi specification for bouncie api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/v1/user
Authenticated user profile
/v1/vehicles
List vehicles for the user
/v1/trips
List trips for the user's vehicles
/v1/webhooks
Register a webhook subscription
/v1/application-geozones/
Create an application geo-zone
/v1/locations/
Create a named location
/v1/schedules/
Create a schedule tied to a location
/v1/user
Authenticated user profile
/v1/vehicles
List vehicles for the user
/v1/trips
List trips for the user's vehicles
/v1/webhooks
Register a webhook subscription
/v1/application-geozones/
Create an application geo-zone
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Bouncie OAuth access and refresh tokens are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped execution access only; raw tokens never appear in prompts, logs, or tool outputs.
Intent-based discovery
Agents search Jentic for intents like 'list Bouncie trips' or 'register a Bouncie webhook' and Jentic returns the matching operations with their input schemas, so the agent calls the right endpoint without crawling docs.
Time to first call
Direct Bouncie integration: 3-5 days for OAuth, webhook registration, and trip schema mapping. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Smartcar API
OEM-integrated connected-car API that pulls data directly from manufacturer telematics rather than an OBD-II dongle.
Use Smartcar when the team prefers OEM connectivity across many car brands; use Bouncie when an OBD-II hardware deployment with trip and webhook coverage is preferred.
Samsara API
Enterprise fleet platform with hardware, video, and compliance features beyond consumer connected vehicles.
Use Samsara for commercial fleet management with HOS and dashcams; use Bouncie for lighter consumer or small-fleet OBD-II telematics.
RTA Fleet API
Fleet maintenance and asset platform that pairs with Bouncie's trip data for service scheduling.
Pair RTA Fleet with Bouncie when trip and mileage data from Bouncie should drive maintenance scheduling in RTA.
Specific to using Bouncie API API through Jentic.
Why is there no official OpenAPI spec for Bouncie API?
Bouncie does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Bouncie API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Bouncie API use?
Bouncie uses OAuth 2.0 user authorization. Register your application on the Bouncie Developer Portal, redirect the user to https://auth.bouncie.com/dialog/authorize for consent, and exchange the returned code for an access token. In Jentic the tokens live in the vault and are injected at execution so they never enter the agent's context.
Can I list a user's trips with the Bouncie API?
Yes. GET /v1/trips returns trips for the authenticated user's vehicles. Combine it with GET /v1/vehicles to map each trip back to a specific vehicle, and prefer trip-end webhooks for live ingestion rather than tight polling.
How do I register a webhook through Jentic?
Run pip install jentic, then search Jentic for 'register a Bouncie webhook', load the POST /v1/webhooks schema, and execute it with your callback URL. Jentic handles the OAuth bearer header automatically; you only need to handle the webhook payloads on your side.
What are the rate limits for the Bouncie API?
Bouncie does not document explicit per-second rate limits in the spec. Best practice is to rely on webhooks for trip and geo-zone events and to backfill via /v1/trips with reasonable page sizes; tight polling against /v1/trips is discouraged.
Can I create geo-zones for entry and exit alerts?
Yes. POST /v1/application-geozones/ creates an application geo-zone visible to your application's connected users; pair it with a webhook subscription to receive entry and exit events. /v1/user-geozones is read-only and reflects zones the end user defined inside their Bouncie app.
/v1/locations/
Create a named location
/v1/schedules/
Create a schedule tied to a location