🤖 RIYA-AIx Quantum v3.4 Build 1.7 is live — Autonomous AI from Mauritius. Download Now →

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.

Step 1

Register & Get Your AIX Token

Create a free account at the Quantum API Portal to receive your personal AIX Token.

Open Quantum Portal →
Step 2

Make Your First API Call

example.py
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.

HTTP Header
Authorization: Bearer aix_your_token_here
Content-Type: application/json
X-AIX-Version: 3.4 Build 1.7

Base URL & Endpoints

Base URL
https://riyaai.com//quantumapi/api/
POST
/task

Submit an autonomous task for execution

Params: task_type (string), parameters (object)

GET
/status/{task_id}

Check the status of a submitted task

Params: task_id (string)

GET
/token/info

Retrieve your AIX Token usage and limits

Params: -

GET
/tasks/history

List your recent task executions

Params: limit (int), page (int)

DELETE
/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
pip install riya-aix-sdk
usage.py
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
composer require riya-aix/quantum-sdk
usage.php
use RiyaAix\QuantumClient;

$client = new QuantumClient('aix_your_token');
$result = $client->tasks->execute([
    'task_type' => 'file_operation',
    'action'    => 'organize',
    'path'      => '/documents',
]);
echo $result->output;

We use essential cookies to ensure the best experience on the RIYA-AIx Quantum platform. By continuing, you agree to our Privacy Policy.