For Agents
Pull DTCs, ECU readouts, and DTC snapshots from a Mercedes-Benz vehicle by VIN/FIN across 4 POST endpoints designed for remote workshop diagnosis.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Remote Diagnostic Support, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 Remote Diagnostic Support API.
Read all active Diagnostic Trouble Codes from a Mercedes-Benz vehicle by vehicleId
Retrieve a DTC snapshot for a specific ECU and DTC combination to diagnose a fault
Pull readouts from a vehicle's electronic control units for deeper analysis
Fetch resource readouts to inspect raw diagnostic resources from the vehicle
GET STARTED
Use for: Read all active fault codes from a Mercedes-Benz vehicle by VIN, Get a DTC snapshot for a specific ECU on a customer's car, Retrieve ECU readouts for a Mercedes-Benz vehicle remotely, Check whether a Mercedes-Benz vehicle has any open trouble codes
Not supported: Does not handle vehicle control, location, fuel, configuration, or imagery — use for reading DTCs, ECU readouts, and DTC snapshots from a Mercedes-Benz vehicle only.
Jentic publishes the only available OpenAPI document for Remote Diagnostic Support, keeping it validated and agent-ready.
The Mercedes-Benz Remote Diagnostic Support API lets authorised third parties pull on-board diagnostic data from a customer's Mercedes-Benz vehicle remotely, on the customer's consent. It returns Diagnostic Trouble Codes (DTCs), DTC snapshots from individual electronic control units (ECUs), ECU readouts, and resource readouts, scoped per vehicleId (VIN/FIN). It is built for partners such as roadside assistance providers and independent workshops who need fault data before sending a technician.
Power roadside-assistance triage by reading vehicle fault state before a technician arrives
Patterns agents use Remote Diagnostic Support API for, with concrete tasks.
★ Roadside assistance pre-arrival triage
Roadside assistance providers (ADAC, ATU, RAC) use the Remote Diagnostic Support API to read a stranded driver's vehicle DTCs before dispatching a technician. POST /vehicles/{vehicleId}/dtcReadouts returns the active fault codes, which the dispatcher uses to send the right specialist with the right parts. This shortens the fix time and avoids second visits.
POST /vehicles/{vehicleId}/dtcReadouts with the customer's VIN to retrieve active DTCs, then summarise the top fault for the dispatcher.
Independent workshop remote diagnosis
Authorised independent workshops use the API to pull ECU readouts and DTC snapshots from a customer's Mercedes-Benz vehicle remotely, before the customer drives in. POST /vehicles/{vehicleId}/ecuReadouts returns the ECU state and POST /vehicles/{vehicleId}/ecuId/{ecuId}/dtcId/{dtcId}/dtcSnapshotReadouts returns the snapshot conditions when a fault was logged, so the workshop can prepare parts and labour ahead of time.
POST /vehicles/{vehicleId}/ecuReadouts to capture the ECU state, then for each fault POST /vehicles/{vehicleId}/ecuId/{ecuId}/dtcId/{dtcId}/dtcSnapshotReadouts to retrieve snapshot data.
Fleet health monitoring
Fleet operators with Mercedes-Benz vehicles run scheduled DTC readouts across the fleet to catch faults before they cause downtime. The API's vehicleId scoping lets the operator iterate VINs and consolidate fault data into a single dashboard, prioritising vehicles with active critical DTCs for service.
For each vehicleId in the fleet list, POST /vehicles/{vehicleId}/dtcReadouts and aggregate active DTCs, flagging any vehicle with critical fault codes for service scheduling.
Agent-driven fault triage via Jentic
An AI assistant can use Jentic to triage a customer's car remotely: customer provides VIN, agent calls /vehicles/{vehicleId}/dtcReadouts, looks up the most severe DTC, and recommends an action. Jentic handles the OAuth credential and exposes each diagnostic operation by intent, so the agent does not need to manage tokens directly.
Search Jentic for 'read mercedes fault codes', load the /dtcReadouts operation schema, execute it with the customer's vehicleId, and return the active DTCs with severity.
4 endpoints — the mercedes-benz remote diagnostic support api lets authorised third parties pull on-board diagnostic data from a customer's mercedes-benz vehicle remotely, on the customer's consent.
METHOD
PATH
DESCRIPTION
/vehicles/{vehicleId}/dtcReadouts
Read active DTCs from a vehicle
/vehicles/{vehicleId}/ecuReadouts
Pull readouts from the vehicle's ECUs
/vehicles/{vehicleId}/ecuId/{ecuId}/dtcId/{dtcId}/dtcSnapshotReadouts
Retrieve a DTC snapshot for an ECU+DTC pair
/vehicles/{vehicleId}/resourceReadouts
Read raw resource data from a vehicle
/vehicles/{vehicleId}/dtcReadouts
Read active DTCs from a vehicle
/vehicles/{vehicleId}/ecuReadouts
Pull readouts from the vehicle's ECUs
/vehicles/{vehicleId}/ecuId/{ecuId}/dtcId/{dtcId}/dtcSnapshotReadouts
Retrieve a DTC snapshot for an ECU+DTC pair
/vehicles/{vehicleId}/resourceReadouts
Read raw resource data from a vehicle
Three things that make agents converge on Jentic-routed access.
Credential isolation
OAuth 2.0 client credentials and customer access tokens are stored in the Jentic vault. The agent sees only a scoped reference; raw tokens are injected when the diagnostic call executes.
Intent-based discovery
Agents search by intent (e.g. 'read mercedes fault codes', 'get ecu readout') and Jentic returns the matching POST operation with its vehicleId/ecuId parameter schema.
Time to first call
Direct integration: 5-10 days to onboard, implement OAuth, and wire the diagnostic flows. Through Jentic: under 1 hour from search to first diagnostic call once OAuth credentials are vaulted.
Alternatives and complements available in the Jentic catalogue.
Remote Diagnostic Support
An equivalent diagnostics spec entry under a different api_slug; same operations, same base URL.
Either spec entry works; pick whichever path is referenced by the integrating tooling.
Smartcar
Multi-brand remote vehicle data API covering many manufacturers but with shallower DTC support.
Choose Smartcar when the integration must cover multiple brands; choose the Mercedes API when the use case is Mercedes-only and needs full ECU/DTC depth.
Tesla Fleet API
Fleet operators with mixed marques use the Tesla Fleet API alongside Mercedes diagnostics for cross-brand fleet health.
Use Tesla Fleet API for Tesla vehicles in the same fleet; use the Mercedes Diagnostics API for Mercedes vehicles.
Specific to using Remote Diagnostic Support API through Jentic.
What authentication does the Remote Diagnostic Support API use?
The API uses OAuth 2.0 with customer consent — the Mercedes-Benz vehicle owner must explicitly authorise the third-party application before a partner can pull diagnostic data. Through Jentic the OAuth client credentials are vaulted and access tokens are exchanged at execution time.
Can I read DTCs from a vehicle without the owner's consent?
No. Every diagnostic call is keyed to a vehicleId (VIN/FIN) and requires an OAuth flow that the vehicle owner has authorised. The API is designed for legitimate partners (ADAC, ATU, authorised workshops) operating with the customer's permission.
What are the rate limits for the Remote Diagnostic Support API?
The spec does not publish a fixed limit. Production rate limits are negotiated per Mercedes-Benz developer portal contract, with the tryout host throttled for evaluation volumes.
How do I read fault codes for a customer's vehicle through Jentic?
Search Jentic for 'read mercedes fault codes', load the POST /vehicles/{vehicleId}/dtcReadouts schema, and execute it with the customer's VIN. Jentic handles the OAuth exchange and returns the active DTC list.
Can I capture the conditions when a fault occurred?
Yes. POST /vehicles/{vehicleId}/ecuId/{ecuId}/dtcId/{dtcId}/dtcSnapshotReadouts returns the DTC snapshot recorded by the specified ECU at the moment the fault was logged, which a workshop can use to reproduce the issue.
Why is every operation a POST instead of a GET?
DTC and ECU readouts are remote commands that cause the vehicle to perform an active diagnostic operation, so they are modelled as POSTs rather than idempotent GETs.