AIX API Documentation
Everything you need to integrate RIYA-AIx Quantum's agentic engine into your applications and workflows.
Quick Start
Get your first autonomous task running in under 5 minutes. You'll need a free AIX Token from the Quantum Portal.
Register & Get Your AIX Token
Create a free account at the Quantum API Portal to receive your personal AIX Token.
Open Quantum Portal →Make Your First API Call
import requests # Your AIX Token from the Quantum Portal AIX_TOKEN = "aix_your_token_here" response = requests.post( "https://riyaai.com/quantumapi/api/task", headers={ "Authorization": f"Bearer {AIX_TOKEN}", "Content-Type": "application/json" }, json={ "task_type": "system_info", "parameters": {"format": "json"} } ) print(response.json())
Authentication
All API requests must include your AIX Token as a Bearer token in the Authorization header.
Authorization: Bearer aix_your_token_here Content-Type: application/json X-AIX-Version: 3.4 Build 1.7
Base URL & Endpoints
https://riyaai.com//quantumapi/api/
/task
Submit an autonomous task for execution
Params: task_type (string), parameters (object)
/status/{task_id}
Check the status of a submitted task
Params: task_id (string)
/token/info
Retrieve your AIX Token usage and limits
Params: -
/tasks/history
List your recent task executions
Params: limit (int), page (int)
/task/{task_id}
Cancel a running task
Params: task_id (string)
Available Task Types
system_info
file_operation
web_browse
code_execute
data_extract
email_process
document_convert
schedule_task
database_query
api_chain
image_process
report_generate
SDK Integration
🐍 Python SDK
pip install riya-aix-sdk
from riya_aix import QuantumClient client = QuantumClient(token="aix_your_token") result = client.tasks.execute( task_type="web_browse", url="https://example.com", action="extract_text" ) print(result.output)
🐘 PHP SDK
composer require riya-aix/quantum-sdk
use RiyaAix\QuantumClient; $client = new QuantumClient('aix_your_token'); $result = $client->tasks->execute([ 'task_type' => 'file_operation', 'action' => 'organize', 'path' => '/documents', ]); echo $result->output;
riyaai.com Platform Services
Access specialized AI services directly from the riyaai.com platform — no installation required.