http-api-cloudbase

Access CloudBase features via HTTP API without SDKs.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CloudBase HTTP API enables backends and scripts to access CloudBase platform features (database, authentication, cloud functions, cloud hosting, cloud storage, AI) via HTTP without relying on SDKs.

Core Features & Use Cases

  • Access CloudBase features via HTTP API (database, authentication, functions, hosting, storage, AI)
  • Use from non-SDK environments like Go, Python, Java, PHP, or admin scripts
  • Ideal for integration tests, CI pipelines, or server-side tooling that must call CloudBase without SDKs

Quick Start

Configure your environment with your CloudBase env ID and authentication method, then start sending HTTP requests to CloudBase HTTP API endpoints per the OpenAPI definitions.

Frequently Asked Questions about http-api-cloudbase

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

FAQPage Schema
How do I access CloudBase features from a Python or Go backend without using an SDK?

Use the CloudBase HTTP API to access platform features over HTTP without SDKs. This enables non-Node backends like Python or Go to interact with CloudBase databases, authentication, and cloud functions directly.

What is the best way to call CloudBase cloud functions in CI pipelines or integration tests?

The best way to call CloudBase in integration tests or CI pipelines is using the HTTP API. It enables server-side tooling to access cloud functions and storage without installing or relying on Node SDKs.

Do I need to consult OpenAPI Swagger definitions to call CloudBase over HTTP?

Yes, you must consult the official OpenAPI Swagger definitions. This is required to obtain correct endpoint paths, authentication schemes, and region-specific base URLs, and to avoid inventing invalid endpoints.

Can I use CloudBase authentication and cloud storage via HTTP requests from a PHP backend?

Yes, you can use CloudBase authentication and cloud storage from a PHP backend via HTTP requests. The HTTP API allows non-SDK environments to access all CloudBase platform features directly without SDK dependencies.

What are the limitations of calling CloudBase over HTTP instead of using the official SDK?

A key limitation is the requirement to manually consult OpenAPI Swagger definitions for endpoint paths, authentication schemes, and region-specific base URLs to avoid inventing endpoints, adding manual setup overhead.