{ "opencollection": "1.0.0", "info": { "name": "Toyota Connected Services Climate Vehicles API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Vehicles", "type": "folder" }, "items": [ { "info": { "name": "List Connected Vehicles", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles" }, "docs": "Returns all vehicles registered to the authenticated account." }, { "info": { "name": "Get Connected Vehicle", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin", "params": [ { "name": "vin", "value": "", "type": "path", "description": "Vehicle Identification Number" } ] }, "docs": "Get registration details for a specific connected vehicle." }, { "info": { "name": "Update Vehicle Alias", "type": "http" }, "http": { "method": "PUT", "url": "https://api.toyota.com/connected/v1/vehicles/:vin", "params": [ { "name": "vin", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the nickname/alias for a vehicle." }, { "info": { "name": "Get Vehicle Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/status", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns the current status and general information for a connected vehicle." }, { "info": { "name": "Refresh Vehicle Status", "type": "http" }, "http": { "method": "POST", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/status/refresh", "params": [ { "name": "vin", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Wake the vehicle and refresh its status data. Requires the vehicle to be connected." }, { "info": { "name": "Get Vehicle Health Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/health", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns vehicle health information including oil level and warning lights." }, { "info": { "name": "Get Vehicle Location", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/location", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns the last known GPS location of the vehicle when parked." }, { "info": { "name": "Get Electric Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/electric", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns EV battery, charging status, and electric range data for hybrid and EV models." }, { "info": { "name": "Refresh Electric Status", "type": "http" }, "http": { "method": "POST", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/electric/refresh", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Request an updated state-of-charge reading from the vehicle." }, { "info": { "name": "Get Climate Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/climate", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns the current climate control settings and status for the vehicle." }, { "info": { "name": "Update Climate Settings", "type": "http" }, "http": { "method": "PUT", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/climate", "params": [ { "name": "vin", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update climate control settings for the vehicle." }, { "info": { "name": "Send Climate Command", "type": "http" }, "http": { "method": "POST", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/climate/command", "params": [ { "name": "vin", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Send a climate control command to start or stop the vehicle's climate system remotely." }, { "info": { "name": "Get Trips", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/trips", "params": [ { "name": "vin", "value": "", "type": "path" }, { "name": "fromDate", "value": "", "type": "query", "description": "Start date for trip history" }, { "name": "toDate", "value": "", "type": "query", "description": "End date for trip history" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum trips to return" }, { "name": "offset", "value": "", "type": "query", "description": "Pagination offset" }, { "name": "includeRoute", "value": "", "type": "query", "description": "Include GPS route for each trip" }, { "name": "includeSummary", "value": "", "type": "query", "description": "Include trip summary statistics" } ] }, "docs": "Returns trip history for a connected vehicle within a specified date range." }, { "info": { "name": "Get Vehicle Notifications", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/notifications", "params": [ { "name": "vin", "value": "", "type": "path" }, { "name": "unreadOnly", "value": "", "type": "query", "description": "Return only unread notifications" } ] }, "docs": "Returns all notifications for the vehicle including alerts, messages, and recalls." }, { "info": { "name": "Send Remote Command", "type": "http" }, "http": { "method": "POST", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/remote-command", "params": [ { "name": "vin", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Send a remote command to the vehicle such as lock, unlock, or horn." }, { "info": { "name": "Get Service History", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/service-history", "params": [ { "name": "vin", "value": "", "type": "path" } ] }, "docs": "Returns service history records for the vehicle." }, { "info": { "name": "Get Vehicle Subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/subscriptions", "params": [ { "name": "vin", "value": "", "type": "path", "description": "Vehicle Identification Number" } ] }, "docs": "Returns connected service and satellite radio subscription details for a vehicle." }, { "info": { "name": "Get Vehicle Telemetry", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/vehicles/:vin/telemetry", "params": [ { "name": "vin", "value": "", "type": "path", "description": "Vehicle Identification Number" } ] }, "docs": "Returns current telemetry data including odometer, fuel level, and distance." }, { "info": { "name": "List Fleet Vehicles", "type": "http" }, "http": { "method": "GET", "url": "https://api.toyota.com/connected/v1/fleet/:fleetId/vehicles", "params": [ { "name": "fleetId", "value": "", "type": "path", "description": "Fleet identifier" }, { "name": "status", "value": "", "type": "query", "description": "Filter by status" }, { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Returns all vehicles enrolled in a specific fleet." }, { "info": { "name": "Enroll Vehicle", "type": "http" }, "http": { "method": "POST", "url": "https://api.toyota.com/connected/v1/fleet/:fleetId/vehicles/enroll", "params": [ { "name": "fleetId", "value": "", "type": "path", "description": "Fleet identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Enroll a vehicle in the telematics fleet program." } ] } ], "bundled": true }