Users API

Use the Users API to list, create, update, and delete users.

Endpoints

GET/api/users
POST/api/users
GET/api/users/1
PUT/api/users/1
PATCH/api/users/1
DELETE/api/users/1

Example Response

{
  "data": {
    "id": 1,
    "name": "John Doe",
    "email": "john@example.com"
  }
}

Delay Simulation

Add a delay parameter to simulate slow APIs.

GET/api/users?delay=3