Skip to content

API Reference

Files.ro API for file management, sharing, and account operations.

Base URL

https://files.ro

Authentication

Use Authorization: Bearer <token> for endpoints that require auth. Get a token via the login endpoint: /api/v1/login.

Quick Start

sh
curl --location --request POST 'https://files.ro/api/v1/login' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "user@example.com",
  "password": "your-password"
}'
sh
curl --location --request GET 'https://files.ro/api/v1/ping' \

Notes

  • Some browse endpoints accept parent_id; omit it to return the root.
  • Many list endpoints accept page, sort, and direction; see each endpoint page for details.