For Agents
List vehicles, fetch their current location, and read trip history from the NetworkFleet telematics platform.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the NetworkFleet API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with NetworkFleet API.
List every vehicle currently provisioned on the fleet account
Fetch a vehicle's last reported location with timestamp
Retrieve historical trip records for a date range
Power a dispatch board with live location pins
GET STARTED
Use for: List all vehicles in our fleet, Get the current location of vehicle V-123, Find all trips for vehicle V-123 yesterday, Check whether a vehicle moved today
Not supported: Does not handle driver behaviour scoring, dashcam video, or fuel and engine diagnostics — use for vehicle inventory, location, and trip history only.
Jentic publishes the only available OpenAPI specification for NetworkFleet API, keeping it validated and agent-ready. NetworkFleet is a fleet telematics platform — historically Verizon NetworkFleet — that tracks vehicle location, driver trips, and on-board diagnostics for commercial fleets. The API exposes vehicle inventory, current location, and trip history endpoints suitable for dispatch, route optimisation, and fleet utilisation reporting.
Calculate vehicle utilisation and idle time from trip history
Patterns agents use NetworkFleet API for, with concrete tasks.
★ Live Dispatch Board
Power a dispatch board that pins each vehicle's last reported position on a map and refreshes on a schedule. The vehicle list and per-vehicle location endpoints together give dispatchers a real-time view without opening the NetworkFleet portal.
List all vehicles via /vehicles and call /vehicles/{vehicleId}/location for each, returning a list of {vehicleId, lat, lng, timestamp}.
Fleet Utilisation Reporting
Pull trip history for a reporting window and compute per-vehicle drive time, idle time, and total miles. Feed the result into a finance or operations report so leasing and maintenance decisions are grounded in actual usage rather than odometer snapshots.
Fetch /trips for the last 30 days, group by vehicleId, and return total drive minutes and total miles per vehicle.
AI Agent Fleet Q&A
Let an AI agent answer 'where is truck V-123 right now?' or 'how many trips did V-7 make yesterday?' through Jentic. The agent calls the right NetworkFleet endpoint and replies in plain English, removing the need for non-technical users to log into the portal.
Given the question 'where is vehicle V-123?', call /vehicles/V-123/location and return the address resolved from the lat/lng plus the timestamp.
3 endpoints — jentic publishes the only available openapi specification for networkfleet api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/vehicles
List vehicles
/vehicles/{vehicleId}/location
Get a vehicle's last reported location
/trips
List trip history
/vehicles
List vehicles
/vehicles/{vehicleId}/location
Get a vehicle's last reported location
/trips
List trip history
Three things that make agents converge on Jentic-routed access.
Credential isolation
Your NetworkFleet API key is stored encrypted in the Jentic vault. Agents receive scoped access — the key is injected at execution time and never enters the agent's prompt context or logs.
Intent-based discovery
Agents search by intent (e.g. 'where is my fleet vehicle') and Jentic returns the matching NetworkFleet operation against /vehicles or /trips with its parameter schema, so the agent calls the right endpoint without docs.
Time to first call
Direct NetworkFleet integration: 2-3 days to wire auth, decode the response shape, and pace polling. Through Jentic: under 1 hour to search, load, and execute the first call.
Alternatives and complements available in the Jentic catalogue.
Telematics SDK API
Telematics SDK provides cross-vendor abstraction over driver behaviour data that pairs with NetworkFleet trip records.
Use Telematics SDK to enrich NetworkFleet trip data with driver scoring derived from phone-side sensors.
Specific to using NetworkFleet API through Jentic.
Why is there no official OpenAPI spec for the NetworkFleet API?
NetworkFleet (Verizon Connect) does not publish a public OpenAPI specification for this surface. Jentic generates and maintains this spec so that AI agents and developers can call NetworkFleet 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 NetworkFleet API use?
NetworkFleet uses API key authentication issued per fleet account, passed in a request header. Through Jentic the key is stored encrypted in the vault and injected at request time, so it never appears in the agent's prompt context.
Can I get a vehicle's current location with the NetworkFleet API?
Yes. GET /vehicles/{vehicleId}/location returns the last reported latitude, longitude, and timestamp for that vehicle. Combine with /vehicles to iterate over the whole fleet for a live dispatch view.
What are the rate limits for the NetworkFleet API?
NetworkFleet does not publish a public per-second rate limit; throughput depends on the fleet plan. For high-frequency location polling, consider per-vehicle backoff and confirm peak limits with the NetworkFleet account team.
How do I pull trip history through Jentic?
Run jentic.search('get fleet trip history'), load the matching operation, and execute GET /trips with a date range. Jentic returns the trip records that the agent can group by vehicle for utilisation reporting.
Does the NetworkFleet API support driver behaviour or fuel data?
This OpenAPI surface focuses on vehicle inventory, location, and trip history. Driver behaviour scoring, fuel consumption, and engine diagnostics live in adjacent NetworkFleet products that require separate onboarding.