Agent skill · Backend & API

acedatacloud-api

Guide for using AceDataCloud APIs. Use when authenticating, making API calls, managing credentials, understanding billing, or integrating AceDataCloud services into applications. Covers setup, authentication, request patterns, error handling, and SDK integration.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill acedatacloud-api-acedatacloud-skills-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0
Declared author: acedatacloud
Requires: Requires an AceDataCloud account at platform.acedata.cloud.
Path: skills/api/acedatacloud-api-acedatacloud-skills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AceDataCloud API Usage Guide Complete guide for using AceDataCloud's AI-powered data services API. ## Getting Started ### 1. Create an Account Register at [platform.acedata.cloud](https://platform.acedata.cloud). ### 2. Subscribe to a Service Browse available services and click **Get** to subscribe. Most services include free quota. ### 3. Create API Credentials Go to your service's **Credentials** page and create an API Token. ## Authentication All APIs use Bearer token authentication: ```bash curl -X POST https://api.acedata.cloud/<endpoint> \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ ... }' ``` ### Token Types | Type | Format | Scope | |------|--------|-------| | **Service Token** | UUID string | Access to subscribed service only | | **Global Token** | UUID string | Access to all subscribed services | ## Base URL ``` https://api.acedata.cloud ``` ## SDK Integration (OpenAI-Compatible) For chat completion services, use the standard OpenAI SDK: ```python from openai import OpenAI client = OpenAI( api_key="YOUR_API_TOKEN", base_url="https://api.acedata.cloud/v1" ) response = client.chat.completions.create( model="claude-sonnet-4-20250

What's inside
Steps it walks through
  1. Getting Started
  2. 1. Create an Account
  3. 2. Subscribe to a Service
  4. 3. Create API Credentials
  5. Authentication
  6. Token Types
  7. Base URL
  8. SDK Integration (OpenAI-Compatible)
  9. Common Request Patterns
  10. Synchronous APIs
  11. Async Task APIs
  12. Error Handling
  13. Billing
  14. Service Categories
Ships with 1 file
  • metadata.json
Commands it runs
curl -X POST https://api.acedata.cloud/<endpoint> \
curl -X POST https://api.acedata.cloud/face/analyze \
More from claude-skill-registry
All skills →
About this skill
What does the acedatacloud-api skill do?

Guide for using AceDataCloud APIs. Use when authenticating, making API calls, managing credentials, understanding billing, or integrating AceDataCloud services into applications. Covers setup, authentication, request patterns, error handling, and SDK integration.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill acedatacloud-api-acedatacloud-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going