# Response Format

#### Success Response

All successful responses follow this structure:

```json
{
  "status": 200,
  "message": "Description of the result",
  "data": "<encrypted_payload>"
}
```

> In production, the `data` field is encrypted using your SSH public key (Ed25519). You must decrypt it using your private key. In test environments, `data` is returned as plain JSON.

#### Error Response

```json
{
  "status": 400,
  "message": "Error description"
}
```
