← Back to Projects
πŸ”· laravel-api 2024

Blog API

REST API for a blog written in Laravel 10. Full support for posts and comments with data validation.

Preview

api-panel β€” rest
Endpoints
GET/api/posts
Request
{}
Response200 OK
{
  "data": [
    {
      "id": 1,
      "title": "Post title",
      "slug": "post-title",
      "body": "Content...",
      "author": {
        "name": "User"
      }
    }
  ]
}

Tech Stack

  • Laravel
  • PHP

Description

REST API for a blog written in Laravel 10. Full support for posts and comments with data validation.