Apiary is a powerful tool for creating and maintaining API documentation. With its user-friendly interface and robust features, it enables developers to design and document APIs efficiently. Here, we present three diverse examples that illustrate how to use Apiary for API documentation effectively.
This example demonstrates how to document a simple RESTful API for a book library. The API allows users to retrieve, add, and delete books from the library.
The documentation will include endpoints, request methods, and sample requests and responses.
The structure is simple yet crucial for developers who will use this API.
FORMAT: 1A
## Book Library API
## Books Collection
### List all Books [GET /books]
+ Response 200 (application/json)
+ Attributes (array[Book])
+ id: 1 (number, required) - The unique identifier for the book.
+ title: "The Great Gatsby" (string, required) - The title of the book.
+ author: "F. Scott Fitzgerald" (string, required) - The author of the book.
### Add a New Book [POST /books]
+ Request (application/json)
+ Attributes (Book)
+ title: "1984" (string, required) - The title of the book.
+ author: "George Orwell" (string, required) - The author of the book.
+ Response 201 (application/json)
+ Attributes (Book)
+ id: 2 (number, required) - The unique identifier for the new book.
+ title: "1984" (string, required) - The title of the new book.
+ author: "George Orwell" (string, required) - The author of the new book.
### Delete a Book [DELETE /books/{id}]
+ Parameters
+ id: 1 (number, required) - The unique identifier for the book to delete.
+ Response 204
In this example, we will document an API that requires authentication via an OAuth 2.0 token. This is essential for APIs that need secure access.
Proper documentation helps developers understand how to authenticate their requests.
FORMAT: 1A
## Secure API Documentation
## Authentication
### OAuth 2.0 Token
To access the API, you need to obtain an OAuth 2.0 access token. Follow the steps below:
1. Navigate to the authorization URL: `https://api.example.com/oauth/authorize`
2. Use your client credentials to request a token.
3. Include the token in your header for all API requests.
### Example Request
+ Request (application/json)
+ Headers
+ Authorization: `Bearer {access_token}`
+ Body
```json
{
"query": "SELECT * FROM users"
}
### Notes
- Always keep your access tokens secure.
- Use clear examples to demonstrate how to include authentication in requests.
## Example 3: Versioning Your API Documentation
### Context
This example showcases how to manage different versions of an API within Apiary. Versioning is crucial for maintaining backward compatibility while introducing new features.
Having a clear versioning structure in the documentation helps developers choose the correct API version for their applications.
```markdown
FORMAT: 1A
## Versioned API Documentation
## API Versions
- v1
- v2
### Version 1: User API
#### Get User [GET /v1/users/{id}]
+ Parameters
+ id: 1 (number, required) - The unique identifier for the user.
+ Response 200 (application/json)
+ Attributes (User)
+ id: 1 (number, required)
+ name: "Alice" (string, required)
### Version 2: User API
#### Get User [GET /v2/users/{id}]
+ Parameters
+ id: 1 (number, required) - The unique identifier for the user.
+ Response 200 (application/json)
+ Attributes (User)
+ id: 1 (number, required)
+ name: "Alice" (string, required)
+ email: "alice@example.com" (string, required) - The email of the user.
By following these examples of using Apiary for API documentation, developers can ensure that their API is well-documented, easy to use, and accessible to a wide audience.