To get started with Swagger UI, you first need to include the Swagger UI library in your project. Here’s a simple example of how to set it up:
<!DOCTYPE html>
<html>
<head>
<title>Swagger UI Example</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.52.5/swagger-ui.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.52.5/swagger-ui-bundle.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.52.5/swagger-ui-standalone-preset.js"></script>
</head>
<body>
<div id="swagger-ui"></div>
<script>
const ui = SwaggerUIBundle({
url: "https://your-api-endpoint/swagger.json",
dom_id: '#swagger-ui',
presets: [SwaggerUIStandalonePreset],
layout: "BaseLayout",
});
</script>
</body>
</html>
In this code snippet:
div
with an ID of swagger-ui
where the documentation will be rendered.Once you set up Swagger UI, it automatically generates a visual representation of your API based on the provided Swagger JSON file. Here’s an example of how the API documentation might look:
GET /users
Response: 200 OK
Content:
[{
"id": 1,
"name": "John Doe"
}, {
"id": 2,
"name": "Jane Smith"
}]
POST /users
Request Body:
{
"name": "New User"
}
Response: 201 Created
{
"id": 3,
"name": "New User"
}
Swagger UI not only visualizes your API but also allows you to interact with it directly from the interface. For example:
The UI will display the response received from your API, including the status code and response body.
Swagger UI is an invaluable tool for API developers and consumers alike, providing a clear and interactive way to explore and test APIs. By integrating Swagger UI into your API documentation, you enhance usability and improve the developer experience.