# Zilfu — Session

1 operation. Schemas referenced below are documented at https://zilfu.app/docs/api/schemas.md.

## Servers

- `https://zilfu.app/api`

## Operations

### Get the authenticated session's user

- **Method:** `GET`
- **Path:** `/session`
- **Tags:** Session

#### Responses

##### Status: 200 \`SessionResource\`

###### Content-Type: application/json

- **`data` (required)**

  `object`

  - **`email` (required)**

    `string`

  - **`id` (required)**

    `string`

  - **`name` (required)**

    `string`

**Example:**

```json
{
  "data": {
    "id": "",
    "name": "",
    "email": ""
  }
}
```

##### Status: 401 Unauthenticated

###### Content-Type: application/json

- **`message` (required)**

  `string` — Error overview.

**Example:**

```json
{
  "message": ""
}
```
