Docs

Documentation

Everything you need to get started with IT Rays. From setup to advanced API usage, we have you covered.

Quick Start

Jump Right In

Choose a topic to get started quickly.

Getting Started

Create your account, choose a plan, and deploy your first agent in under 5 minutes.

Read guide →

API Reference

Full REST API documentation for automating device management, user provisioning, and reporting.

View API docs →

Downloads

Download agents for Windows, macOS, and Linux. Includes MSI, PKG, and DEB/RPM packages.

Get downloads →
Step by Step

Getting Started

Follow these four steps to get IT Rays up and running in your organization.

1

Create Account

Sign up at it-rays.pro/register with your business email. Verify your email to activate your organization.

2

Choose Plan

Select a plan that fits your needs. Start with the free tier for up to 5 devices, or choose Pro or Enterprise for full access.

3

Download Agent

Download the IT Rays agent for your operating system. Available for Windows, macOS, and Linux distributions.

4

Deploy & Manage

Install the agent on target devices. They will appear in your dashboard automatically, ready for remote management.

Requirements

System Requirements

Minimum requirements for running the IT Rays agent on your devices.

Component Minimum Recommended
Operating System Windows 10 / macOS 12 / Ubuntu 20.04 Windows 11 / macOS 14 / Ubuntu 22.04
Processor 1 GHz dual-core 2 GHz quad-core
Memory 2 GB RAM 4 GB RAM
Disk Space 200 MB 500 MB
Network 1 Mbps broadband 10 Mbps broadband
Ports 443 (HTTPS outbound) 443, 8443 (WebSocket)
API

API Example

Use our REST API to manage devices programmatically. Here is a quick example.

Terminal
# List all devices in your organization
curl -X GET https://api.it-rays.pro/v1/devices \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

# Response
{
  "status": "success",
  "data": {
    "devices": [
      { "id": "dev_01", "name": "workstation-01", "status": "online" },
      { "id": "dev_02", "name": "server-prod-01", "status": "online" }
    ],
    "total": 2
  }
}
Installation

Installation Guide

Install the IT Rays agent on your target devices using the commands below.

Windows

Download and run the MSI installer, or use the command line:

# Download and install via PowerShell
Invoke-WebRequest -Uri https://dl.it-rays.pro/agent/latest/itrays-agent.msi -OutFile itrays-agent.msi
msiexec /i itrays-agent.msi /quiet ORG_KEY="YOUR_ORG_KEY"

macOS

Install using Homebrew or download the PKG installer:

# Install via Homebrew
brew install --cask itrays-agent
itrays-agent configure --org-key "YOUR_ORG_KEY"

Linux (Debian/Ubuntu)

Use our APT repository for automatic updates:

# Add repository and install
curl -fsSL https://dl.it-rays.pro/keys/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/it-rays.gpg
echo "deb [signed-by=/usr/share/keyrings/it-rays.gpg] https://dl.it-rays.pro/apt stable main" | sudo tee /etc/apt/sources.list.d/it-rays.list
sudo apt update && sudo apt install itrays-agent
sudo itrays-agent configure --org-key "YOUR_ORG_KEY"

Need More Help?

Our support team is available 24/7 to help you get set up. Reach out anytime.