Getting started with OpenAPI specifications.md

August 21, 2023 ยท View on GitHub

What is an OpenAPI Specification?

OpenAPI Specification (formerly known as Swagger Specification) is an API description format for REST APIs. An OpenAPI file allows you to describe your entire API, including:

  • Available endpoints (/users) and operations on each endpoint (GET /users, POST /users)
  • Operation parameters input and output for each operation
  • Authentication methods
  • Contact information, license, terms of use and other information

Currently, we only support OpenAPI Specification 2.0 or Swagger V2.0.

Helpful Resources