ford-motor Automotive API

Automotive operations

OpenAPI Specification

ford-motor-automotive-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Ford Developer Automotive 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/
servers:
- url: https://api.ford.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Automotive
  description: Automotive operations
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
externalDocs:
  description: Documentation
  url: https://developer.ford.com/