Skip to main content

Using the Unraid API

Quick Start

The Unraid API provides a powerful GraphQL interface for managing your server. This guide covers authentication, common queries, and best practices.

The Unraid API provides a GraphQL interface that allows you to interact with your Unraid server. This guide will help you get started with exploring and using the API.

๐ŸŽฎ Enabling the GraphQL Sandboxโ€‹

Preferred Method

Using the Web GUI is the easiest way to enable the GraphQL sandbox.

  1. Navigate to Settings โ†’ Management Access โ†’ Developer Options

  2. Enable the GraphQL Sandbox toggle

  3. Access the GraphQL playground by navigating to:

    http://YOUR_SERVER_IP/graphql

CLI Methodโ€‹

Alternatively, you can enable developer mode using the CLI:

unraid-api developer --sandbox true

Or use the interactive mode:

unraid-api developer

๐Ÿ”‘ Authenticationโ€‹

Required for Most Operations

Most queries and mutations require authentication. Always include appropriate credentials in your requests.

You can authenticate using:

  1. API Keys - For programmatic access
  2. Cookies - Automatic when signed into the WebGUI
  3. SSO/OIDC - When configured with external providers

Managing API Keysโ€‹

Navigate to Settings โ†’ Management Access โ†’ API Keys in your Unraid web interface to:

  • View existing API keys
  • Create new API keys
  • Manage permissions and roles
  • Revoke or regenerate keys

You can also use the CLI to create an API key:

unraid-api apikey --create

Follow the prompts to set:

  • Name
  • Description
  • Roles
  • Permissions

Using API Keysโ€‹

The generated API key should be included in your GraphQL requests as a header:

{
"x-api-key": "YOUR_API_KEY"
}

๐Ÿ“Š Available Schemasโ€‹

The API provides access to various aspects of your Unraid server:

System Informationโ€‹

  • Query system details including CPU, memory, and OS information
  • Monitor system status and health
  • Access baseboard and hardware information

Array Managementโ€‹

  • Query array status and configuration
  • Manage array operations (start/stop)
  • Monitor disk status and health
  • Perform parity checks

Docker Managementโ€‹

  • List and manage Docker containers
  • Monitor container status
  • Manage Docker networks

Remote Accessโ€‹

  • Configure and manage remote access settings
  • Handle SSO configuration
  • Manage allowed origins

๐Ÿ’ป Example Queriesโ€‹

Check System Statusโ€‹

query {
info {
os {
platform
distro
release
uptime
}
cpu {
manufacturer
brand
cores
threads
}
}
}

Monitor Array Statusโ€‹

query {
array {
state
capacity {
disks {
free
used
total
}
}
disks {
name
size
status
temp
}
}
}

List Docker Containersโ€‹

query {
dockerContainers {
id
names
state
status
autoStart
}
}

๐Ÿ—๏ธ Schema Typesโ€‹

The API includes several core types:

Base Typesโ€‹

  • Node: Interface for objects with unique IDs - please see Object Identification
  • JSON: For complex JSON data
  • DateTime: For timestamp values
  • Long: For 64-bit integers

Resource Typesโ€‹

  • Array: Array and disk management
  • Docker: Container and network management
  • Info: System information
  • Config: Server configuration
  • Connect: Remote access settings

Role-Based Accessโ€‹

Available roles:

  • admin: Full access
  • connect: Remote access features
  • guest: Limited read access

โœจ Best Practicesโ€‹

Pro Tips
  1. Use the Apollo Sandbox to explore the schema and test queries
  2. Start with small queries and gradually add fields as needed
  3. Monitor your query complexity to maintain performance
  4. Use appropriate roles and permissions for your API keys
  5. Keep your API keys secure and rotate them periodically

โฑ๏ธ Rate Limitingโ€‹

Rate Limits

The API implements rate limiting to prevent abuse. Ensure your applications handle rate limit responses appropriately.

๐Ÿšจ Error Handlingโ€‹

The API returns standard GraphQL errors in the following format:

{
"errors": [
{
"message": "Error description",
"locations": [...],
"path": [...]
}
]
}

๐Ÿ“š Additional Resourcesโ€‹

Learn More
  • Use the Apollo Sandbox's schema explorer to browse all available types and fields
  • Check the documentation tab in Apollo Sandbox for detailed field descriptions
  • Monitor the API's health using unraid-api status
  • Generate reports using unraid-api report for troubleshooting

For more information about specific commands and configuration options, refer to the CLI documentation or run unraid-api --help.