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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Getting Started
- 1. Create an Account
- 2. Subscribe to a Service
- 3. Create API Credentials
- Authentication
- Token Types
- Base URL
- SDK Integration (OpenAI-Compatible)
- Common Request Patterns
- Synchronous APIs
- Async Task APIs
- Error Handling
- Billing
- Service Categories
curl -X POST https://api.acedata.cloud/<endpoint> \ curl -X POST https://api.acedata.cloud/face/analyze \
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.
