http-api-cloudbase

Access CloudBase platform features via raw HTTP API calls.

Updated Mar 10, 2026
One-click install
npx skills add https://github.com/xongtao/openclaw-backup --skill http-api-cloudbase-xongtao
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: http-api-cloudbase
Source: https://github.com/xongtao/openclaw-backup/tree/main/skills/cloudbase/references/http-api
Command: npx skills add https://github.com/xongtao/openclaw-backup --skill http-api-cloudbase-xongtao

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables direct HTTP access to CloudBase platform features (database, authentication, cloud functions, cloud hosting, cloud storage, AI) for backends or scripts that cannot use the official SDKs.

Core Features & Use Cases

  • Access CloudBase features via raw HTTP endpoints for database operations, function invocations, storage interactions, auth, and more.
  • Useful for non-SDK environments (Go, Python, Java, PHP, etc.), integration tests, or admin scripts that need to talk to CloudBase via HTTP.
  • Always reference the official OpenAPI Swagger docs to discover exact endpoints, methods, and request/response schemas.

Quick Start

Run a simple HTTP call to the CloudBase API to fetch a list of databases in your environment.

Frequently Asked Questions about http-api-cloudbase

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I call CloudBase APIs from a Python backend without using the official SDK?

You can call CloudBase APIs from a Python backend without the SDK by making raw HTTP requests to the platform's REST endpoints. This approach requires your environment ID and an authentication method like an API Key or AccessToken.

What is the best way to access CloudBase database and storage features in a Go script?

The best way to access CloudBase database and storage features in a Go script is via direct HTTP API calls. This method bypasses the need for SDKs, using your environment ID and AccessToken or Publishable Key for authentication.

Can I use CloudBase HTTP APIs to invoke cloud functions from Java or PHP environments?

Yes, you can use CloudBase HTTP APIs to invoke cloud functions from Java or PHP environments. By sending raw HTTP requests with valid authentication, you can trigger functions and interact with other platform services directly.

How do I find exact endpoints and request schemas for CloudBase REST API calls?

To find exact endpoints and request schemas for CloudBase REST API calls, you should reference the official OpenAPI Swagger documentation. This ensures your HTTP requests use the correct methods and payload structures.

What authentication methods are required for direct HTTP access to CloudBase?

Direct HTTP access to CloudBase requires an environment ID along with a valid authentication method. You can authenticate using an AccessToken, an API Key, or a Publishable Key depending on your backend or script requirements.