Ford Developer API

The Ford Developer API provides access to connected vehicle data, allowing developers to build applications that interact with Ford vehicles. It includes APIs for vehicle status, location, remote commands, and diagnostics.

OpenAPI Specification

ford-motor-ford-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Ford Developer API
  description: >-
    The Ford Developer API provides access to connected vehicle data, allowing developers to build applications that interact with Ford vehicles. It includes APIs for vehicle status, location, remote commands, and diagnostics.
  version: '1.0'
  contact:
    name: Ford Motor Developer Support
    url: https://developer.ford.com/
externalDocs:
  description: Documentation
  url: https://developer.ford.com/
servers:
  - url: https://api.ford.com
    description: Production
tags:
  - name: Automotive
    description: Automotive operations
security:
  - bearerAuth: []
paths:
  /status:
    get:
      operationId: getStatus
      summary: Get API status
      description: >-
        Returns the current status of the API.
      tags:
        - Automotive
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  version:
                    type: string
        '401':
          description: Unauthorized
        '429':
          description: Too many requests
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer