Response Format

Success Response

All successful responses follow this structure:

{
  "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

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

Last updated