Documenting RESTful APIs is crucial for developers and users to understand how to interact with your service effectively. Clarity, precision, and comprehensive examples can significantly enhance user experience, ensuring that your API is accessible and easy to use. Below are three practical examples of documenting RESTful APIs that illustrate different approaches and tools.
In this example, we will document a basic user authentication API, which allows users to log in and receive a token for subsequent requests.
### User Login API
- **Endpoint:** `/api/login`
- **Method:** `POST`
- **Description:** Authenticates a user and returns a JSON Web Token (JWT).
#### Request
- **Headers:**
- `Content-Type: application/json`
- **Body:**
```json
{
"username": "user123",
"password": "securePassword"
}
200 OK
Body:
{
"token": "eyJhbGciOiJIUzI1NiIs..."
}
### Notes
- Ensure that the password is hashed before transmission.
- Consider adding rate limiting for authentication attempts to enhance security.
## Example 2: Product Inventory API Documentation with Swagger
### Use Case
This example demonstrates using Swagger (OpenAPI) to document a product inventory API, which allows users to retrieve product details and stock levels.
```yaml
openapi: 3.0.0
info:
title: Product Inventory API
description: API for managing product inventory.
version: 1.0.0
paths:
/api/products:
get:
summary: Retrieve a list of products
responses:
'200':
description: A list of products
content:
application/json:
schema:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
stock:
type: integer
In this example, we will document a weather data API using Postman, which provides current weather information for specified locations.
### Current Weather API
- **Endpoint:** `/api/weather/current`
- **Method:** `GET`
- **Description:** Retrieves current weather data for a given city.
#### Request
- **Query Parameters:**
- `city`: The name of the city to retrieve weather for (e.g., `London`).
#### Example Request
GET /api/weather/current?city=London
#### Response
- **Status Code:** `200 OK`
- **Body:**
```json
{
"city": "London",
"temperature": "15°C",
"condition": "Cloudy"
}