API Reference

Build powerful integrations with our REST API.

// Example Request
GET https://api.viroxcloud.com/v1/users
Authorization: Bearer YOUR_API_KEY
// Response
{
  "data": [
    {
      "id": "usr_123",
      "name": "Jane Doe",
      "role": "admin"
    }
  ],
  "meta": {
    "total": 1
  }
}