0 votes
in API Gateways by
How do I get started with Swagger and OAS?

1 Answer

0 votes
by

If you're an API provider and want to use Swagger tools build your APIs and the OpenAPI specification to describe your APIs - there are several approaches available:  

Starting from scratch? 

  • Use the Swagger Editor to create your OAS definition and then use Swagger Codegen to generate server implementation. 
  • Use the Swagger UI to visualize and document your OAS definition 
  • Design, document and develop APIs as a team using SwaggerHub 

Creating the OAS file from an existing API? 

Finding an easy way to generate the OpenAPI definition from an existing API can be challenging. You have to reverse engineer the API and get acquainted with the process of generating the OAS from existing APIs.  The good news is that Swagger tools can help you do this with ease.  

  • Use Swagger Core open source project to create the OAS from your existing Java APIs. Swagger Core supports frameworks like JAX-RS or node.js.  

Have a look at this example to see how Swagger Core can help your JAX-RS implemented API -  https://github.com/swagger-api/swagger-core/wiki/Swagger-Core-JAX-RS-Project-Setup-1.5.X 

  • Swagger Inspector allows you to easily and quickly auto-generate an OAS definition from any API endpoint right from your browser 

If on the other hand you're an API Consumer who wants to integrate with an API that has an OpenAPI definition you can use Swagger Inspector or the online version of Swagger UI to explore the API (given that you have a URL to the APIs Swagger definition) - and then use Swagger Codegen to generate the client library of your choice.  In either case - be sure to check out the long list of open source projects and our commercial offering, SwaggerHub.   

Related questions

+1 vote
asked Dec 27, 2021 in AWS CodeCommit by sharadyadav1986
+1 vote
asked May 26, 2020 in Amazon Elastic Compute Cloud EC2 by Indian
...