Welcome to the API documentation for the en/tutorial_web_app
. This page provides an overview of the available endpoints and how to use them effectively.
Available Endpoints
/en/tutorial_web_app/api/users
- Retrieve information about users./en/tutorial_web_app/api/posts
- Get a list of posts./en/tutorial_web_app/api/posts/<post_id>
- Retrieve details of a specific post.
Usage Examples
Retrieving User Information
To get information about a user, send a GET request to /en/tutorial_web_app/api/users
.
GET /en/tutorial_web_app/api/users
Getting Posts
To retrieve a list of posts, send a GET request to /en/tutorial_web_app/api/posts
.
GET /en/tutorial_web_app/api/posts
Getting Post Details
To get details of a specific post, send a GET request to /en/tutorial_web_app/api/posts/<post_id>
.
GET /en/tutorial_web_app/api/posts/123
Additional Resources
For more detailed information, please refer to our API Reference.
API Documentation