Build APIs 10x Faster with Laravel Restify

Get our FREE starter kit with authentication, roles, teams & more

What's Included FREE

🔐 Complete Authentication
Login, registration, password reset, email verification
🛡️ Roles & Permissions
Built with Spatie, fine-grained API access control
👥 Teams Management
Invitations, member management, team permissions
🔄 Postman Collection
Ready-to-import with all endpoints pre-configured
</> API Examples
POST /api/restify/users

// Headers
Content-Type: application/json
Authorization: Bearer YOUR_API_TOKEN

// Request Body
{
  "first_name": "John",
  "last_name": "Doe",
  "email": "john@example.com",
  "avatar": "https://example.com/avatar.jpg"
}
GET /api/restify/invitations

// Headers
Content-Type: application/json
Authorization: Bearer YOUR_API_TOKEN

// Response (200 OK)
{
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "path": "https://example.com/api/restify/invitations",
    "per_page": 15,
    "to": 10,
    "total": 10
  },
  "links": {
    "first": "https://example.com/api/restify/invitations?page=1",
    "next": null,
    "path": "https://example.com/api/restify/invitations",
    "prev": null,
    "filters": "/api/restify/invitations/filters"
  },
  "data": [
    {
      "id": "01jfwh19rgg3akdbb1cmwq4weh",
      "type": "invitations",
      "attributes": {
        "id": "01jfwh19rgg3akdbb1cmwq4weh",
        "first_name": "Mihai",
        "last_name": "Georgescu",
        "email": "mihai@demo.com"
      }
    },
    ...
  ]
}