This is a basic Blog API built using Django and Django Rest Framework. The API provides the functionality to manage and interact with blog posts. It allows users to perform CRUD operations (Create, Read, Update) on blog data.
- GET /api/blogs/: Retrieve a list of all blogs.
- GET /api/blogs/{id}/: Retrieve a specific blog by ID.
- POST /api/blogs/: Create a new blog post.
- PUT /api/blogs/{id}/: Update an existing blog post by ID.
- Django: A Python web framework for building the API.
- Django Rest Framework: A toolkit for building Web APIs in Django.
- Postman: For testing the API and exporting requests.