Ford Commands API

The Commands API from Ford — 7 operation(s) for commands.

Operations 7

POST /api/fordconnect/vehicles/v1/{vehicleId}/lock Issue a lock command
GET /api/fordconnect/vehicles/v1/{vehicleId}/lock/{commandId} Check lock command status
POST /api/fordconnect/vehicles/v1/{vehicleId}/unlock Issue an unlock command
GET /api/fordconnect/vehicles/v1/{vehicleId}/unlock/{commandId} Check unlock command status
POST /api/fordconnect/vehicles/v1/{vehicleId}/startEngine Remote start engine
POST /api/fordconnect/vehicles/v1/{vehicleId}/stopEngine Remote stop engine
POST /api/fordconnect/vehicles/v1/{vehicleId}/wake Wake the vehicle from sleep

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ford-commands-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

ford-commands-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FordConnect Charging Commands API
  version: '1.0'
  description: 'Best-effort OpenAPI 3.1 description of the FordConnect API, derived from

    the public developer page at https://developer.ford.com/apis/fordconnect

    and the public FordConnect simulator at

    https://github.com/jamisonderek/ford-connect-sim. The FordConnect API

    allows authorized partners to send vehicle commands (lock, unlock, start,

    stop, charge) and retrieve vehicle status and information for enrolled

    Ford and Lincoln vehicles. Authentication uses OAuth 2.0 with an

    authorization-code grant; access tokens are passed as `Authorization:

    Bearer` headers.

    '
  contact:
    name: Ford Developer
    url: https://developer.ford.com/
servers:
- url: https://api.mps.ford.com
  description: Production (FordConnect)
security:
- oauth2: []
- bearerAuth: []
tags:
- name: Commands
paths:
  /api/fordconnect/vehicles/v1/{vehicleId}/lock:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    post:
      tags:
      - Commands
      summary: Issue a lock command
      responses:
        '202':
          $ref: '#/components/responses/Command'
  /api/fordconnect/vehicles/v1/{vehicleId}/lock/{commandId}:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    - $ref: '#/components/parameters/CommandId'
    get:
      tags:
      - Commands
      summary: Check lock command status
      responses:
        '200':
          $ref: '#/components/responses/Json'
  /api/fordconnect/vehicles/v1/{vehicleId}/unlock:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    post:
      tags:
      - Commands
      summary: Issue an unlock command
      responses:
        '202':
          $ref: '#/components/responses/Command'
  /api/fordconnect/vehicles/v1/{vehicleId}/unlock/{commandId}:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    - $ref: '#/components/parameters/CommandId'
    get:
      tags:
      - Commands
      summary: Check unlock command status
      responses:
        '200':
          $ref: '#/components/responses/Json'
  /api/fordconnect/vehicles/v1/{vehicleId}/startEngine:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    post:
      tags:
      - Commands
      summary: Remote start engine
      responses:
        '202':
          $ref: '#/components/responses/Command'
  /api/fordconnect/vehicles/v1/{vehicleId}/stopEngine:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    post:
      tags:
      - Commands
      summary: Remote stop engine
      responses:
        '202':
          $ref: '#/components/responses/Command'
  /api/fordconnect/vehicles/v1/{vehicleId}/wake:
    parameters:
    - $ref: '#/components/parameters/VehicleId'
    post:
      tags:
      - Commands
      summary: Wake the vehicle from sleep
      responses:
        '202':
          $ref: '#/components/responses/Command'
components:
  parameters:
    CommandId:
      name: commandId
      in: path
      required: true
      schema:
        type: string
    VehicleId:
      name: vehicleId
      in: path
      required: true
      schema:
        type: string
  responses:
    Command:
      description: Command accepted
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: integer
              commandStatus:
                type: string
              commandId:
                type: string
    Json:
      description: JSON response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 authorization-code grant brokered through Ford's identity service
      flows:
        authorizationCode:
          authorizationUrl: https://fordconnect.cv.ford.com/common/login
          tokenUrl: https://dah2vb2cprod.b2clogin.com/914d88b1-3523-4bf6-9be4-1b96b4f6f919/oauth2/v2.0/token
          scopes:
            access: Access enrolled vehicles
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT