Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 2.49 KB

Getting started with OpenAPI specifications.md

File metadata and controls

27 lines (24 loc) · 2.49 KB

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