http-api-cloudbase

Call CloudBase platform features via official raw HTTP endpoints.

2|1|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/lxb031018/qintu --skill http-api-cloudbase-lxb031018
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: http-api-cloudbase
Source: https://github.com/lxb031018/qintu/tree/main/.codebuddy/skills/http-api
Command: npx skills add https://github.com/lxb031018/qintu --skill http-api-cloudbase-lxb031018

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you reliably access CloudBase platform capabilities using official raw HTTP endpoints when an SDK is unavailable or not suitable, reducing guesswork about URLs, parameters, and authentication.

Core Features & Use Cases

  • Official CloudBase HTTP API routing: Use the correct gateway base URL patterns for domestic and international regions and target the intended platform feature (database, functions, auth, storage, CloudRun).
  • Authentication setup for HTTP requests: Choose AccessToken, API Key, or Publishable Key and send the correct Authorization header format.
  • OpenAPI-driven request construction: Always retrieve the official OpenAPI spec via searchKnowledgeBase (by apiName) and implement only documented endpoints and schemas.
  • Database and function invocation support: Covers MySQL RESTful operations (query/insert/update/delete), and provides guidance for invoking Cloud Functions via HTTP.

Quick Start

Use the http-api-cloudbase skill to generate a curl-ready raw HTTP request plan for your CloudBase environment by specifying env ID, the auth method, and the target API (mysqldb/functions/auth/cloudrun/storage) after reviewing the corresponding OpenAPI spec.

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 platform APIs via raw HTTP without using an SDK?

You can call CloudBase APIs via raw HTTP by selecting the correct environment base URL, setting up Bearer authentication in the Authorization header, and looking up the OpenAPI spec to ensure your endpoint paths and parameters match documented contracts.

What is the best way to invoke CloudBase database and cloud functions from a non-Node backend?

The best way to invoke CloudBase database and cloud functions from a non-Node backend is using official raw HTTP endpoints, applying RESTful operations for MySQL databases and specific HTTP routes for functions while authenticating with an AccessToken or API Key.

How do I set up authentication headers for CloudBase REST API requests?

To set up authentication headers for CloudBase REST API requests, choose an AccessToken, API Key, or Publishable Key, and send the correct Authorization header format containing the Bearer token to verify your access to the platform features.

Can I use raw HTTP API requests to manage CloudBase storage and CloudRun in native apps?

Yes, you can use raw HTTP API requests to manage CloudBase storage and CloudRun in native apps, as this approach bypasses SDK requirements by directly targeting gateway base URLs with explicit environment selection and valid authentication.

When should I use the CloudBase OpenAPI spec lookup instead of guessing HTTP endpoint parameters?

You should always use the CloudBase OpenAPI spec lookup via searchKnowledgeBase before making raw HTTP requests to ensure endpoint paths, parameters, and schemas match documented contracts, reducing guesswork about URLs and preventing API integration errors.

Does calling CloudBase functions via HTTP work for domestic and international regions?

Yes, calling CloudBase functions via HTTP works for both regions by using the correct gateway base URL patterns specific to domestic and international environments to route requests to the intended platform feature reliably.