# List all access tokens Returns a list of the authenticated user's access tokens Endpoint: GET /v1/auth/tokens Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `tokens` (array) - `tokens.id` (integer, required) Unique identifier for the token Example: 123 - `tokens.name` (string, required) Name of the device or application the token was created for Example: "iPhone 14 Pro" - `tokens.created_at` (string, required) When the token was created Example: "2023-01-01T12:00:00.000000Z" - `tokens.last_used_at` (string) When the token was last used Example: "2023-01-02T14:30:00.000000Z" ## Response 401 fields (application/json): - `message` (string, required) Error message Example: "Validation failed" - `errors` (object) Detailed validation errors by field Example: {"email":["The email must be a valid email address","The email has already been taken"],"password":["The password must be at least 8 characters"],"template_name":["This field is required"]}