Tesla Motors Media Control API
The Media Control API from Tesla Motors — 8 operation(s) for media control.
The Media Control API from Tesla Motors — 8 operation(s) for media control.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/tesla-motors-media-control-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Tesla Motors Owner Authentication Media Control API
description: The Tesla Motors Owner API provides programmatic access to Tesla vehicles for monitoring state data (charge, climate, drive, vehicle config) and executing remote commands (wake up, lock/unlock doors, control climate, manage charging, control trunk, media playback, and more).
version: '1.0'
contact:
name: Tesla Developer Support
url: https://developer.tesla.com
servers:
- url: https://owner-api.teslamotors.com/
description: Tesla Owner API
tags:
- name: Media Control
paths:
/api/1/vehicles/{vehicle_id}/command/media_toggle_playback:
post:
tags:
- Media Control
summary: Tesla Pause/Play Media
description: Pause/Play Media
operationId: MediaTogglePlayback
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_next_track:
post:
tags:
- Media Control
summary: Tesla Next Track
description: Next Track
operationId: MediaNextTrack
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_prev_track:
post:
tags:
- Media Control
summary: Tesla Previous Track
description: Previous Track
operationId: MediaPrevTrack
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_next_fav:
post:
tags:
- Media Control
summary: Tesla Next Favorite
description: Next Favorite
operationId: MediaNextFavorite
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_prev_fav:
post:
tags:
- Media Control
summary: Tesla Previous Favorite
description: Previous Favorite
operationId: MediaPrevFavorite
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_volume_up:
post:
tags:
- Media Control
summary: Tesla Volume Up
description: Volume Up
operationId: MediaVolumeUp
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/media_volume_down:
post:
tags:
- Media Control
summary: Tesla Volume Down
description: Volume Down
operationId: MediaVolumeDown
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
responses:
200:
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/CommandResponse'
/api/1/vehicles/{vehicle_id}/command/adjust_volume:
post:
tags:
- Media Control
summary: Tesla Adjust Volume
description: Adjust Volume
operationId: MediaAdjustVolume
parameters:
- name: vehicle_id
in: path
description: The id of the Vehicle.
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AdjustVolumeRequest'
required: true
responses:
200:
description: ''
content:
application/josn:
schema:
$ref: '#/components/schemas/CommandResponse'
x-codegen-request-body-name: body
components:
schemas:
CommandResponse:
title: CommandResponse
required:
- response
type: object
properties:
response:
type: object
properties:
result:
type: boolean
reason:
type: string
description: ''
AdjustVolumeRequest:
title: Adjust Volume request
type: object
properties:
volume:
type: number
description: Volume level, from 0-11
format: int32
example: 1