PlusClouds

توثيق

كل ما تحتاجه للبناء والنشر والتوسع على PlusClouds.

⌘K

البدء السريع

قم بنشر أول خادم سحابي لك في أقل من 5 دقائق.

البدء السريع
مرجع API

Base URL & Authentication

All API requests use Bearer token authentication against a single base URL.

Base URL

https://apiv4.plusclouds.com

Env: LEO_API_URL

Authentication

Authorization: Bearer <token>

Generate tokens from your profile → API Tokens.

Commons Endpoint

/commons/<object>

Replace <object> with the resource name.

Code Examples

import { useEffect, useState } from 'react';

export default function FetchData() {
  const [data, setData] = useState(null);

  useEffect(() => {
    const apiUrl = 'https://apiv4.plusclouds.com';
    const accessToken = 'your-access-token';

    fetch(`${apiUrl}/commons/<object>`, {
      headers: { 'Authorization': `Bearer ${accessToken}` }
    })
      .then(res => res.json())
      .then(setData);
  }, []);

  return <pre>{JSON.stringify(data, null, 2)}</pre>;
}

Live Playground

commons / *

Select an endpoint from the left to run it

// Select an endpoint and click Run
// Response will appear here

Endpoint Explorer

Auth, Blogs & AutoQuill endpoints — all proxied through Next.js API routes to https://apiv4.plusclouds.com. Click any endpoint to expand.

Full Auth Flow

registersessionmechanismssend-otpvalidate-otpauth-codeaccess-tokenme
أدلة ودروس تعليمية

Browse by topic

Cloud Infrastructure

Virtual machines, networking, storage, and datacenter guides.

API Reference

Complete REST API docs with request/response examples.

Eaglet & LeadOcean

AI-powered B2B lead qualification and sales intelligence.

Solutions

Industry-specific solutions for software, restaurant, and tourism.

AutoQuill

Automated AI content creation and publishing to WordPress.

Billing & Account

Invoices, usage limits, payment methods, and team settings.

ما الجديد

عرض الكل →
Mar 2025
Cloud

NVMe storage pools now available in all regions

High IOPS NVMe volumes are now supported across all compute pools with automatic failover.

Feb 2025
AutoQuill

AutoQuill Pro: multi-channel publishing support

Pro plan now supports publishing to up to 10 channels simultaneously with per-channel scheduling.

Jan 2025
API

REST API v4 — unified authentication

All endpoints now use a single Bearer token flow. Legacy API keys will be deprecated in Q3.

Dec 2024
LeadOcean

AI matching accuracy improved by 40%

New embedding model trained on 12M company profiles delivers higher precision lead scores.

Ready to build?

Create a free account and deploy your first server in minutes.