API Reference

Detailed documentation for Nexus API endpoints. (Static Demo)

GET ./files

Retrieves a list of files in the root directory.

{
  "object": "list",
  "data": [
    {
      "id": "file_12345",
      "object": "file",
      "name": "architecture_v2.pdf",
      "size_bytes": 1048576,
      "created_at": 1716660000
    }
  ],
  "has_more": false
}
POST ./shares

Creates a new secure sharing link for a specific file.

{
  "id": "share_98765",
  "object": "share",
  "file_id": "file_12345",
  "url": "https://storage.example.com/s/demo-link-x8j2",
  "expires_at": 1719252000
}
GET ./storage

Returns current storage usage metrics for the authenticated team.