acedatacloudlisted
Install: claude install-skill AceDataCloud/Skills
# AceDataCloud Platform Management
Programmatically manage your AceDataCloud account: balances, usage records, API
keys, services, orders, platform tokens, models, announcements and referral
earnings — plus browse the public catalog & docs (service pricing, API specs,
datasets, integrations, documentation search, model catalog) without a token.
This is the **management / console** API at `https://platform.acedata.cloud/api/v1`
— the same surface the web console uses. It is **different** from the
data-generation API at `api.acedata.cloud` (image / video / music / search generation).
## Setup — use a PLATFORM token, not a service token
The management API is authenticated with a **platform token** (or a logged-in
user token), **not** the per-service API token used for `api.acedata.cloud`.
1. Create one at [platform.acedata.cloud/console/platform-tokens](https://platform.acedata.cloud/console/platform-tokens)
(or `POST /api/v1/platform-tokens/`). It starts with `platform-` and never expires.
2. Provide it one of two ways:
- **Connector (recommended in studio / chat):** install the **AceDataCloud**
connector at [auth.acedata.cloud/user/connections](https://auth.acedata.cloud/user/connections)
and paste the token once — the runtime injects `ACEDATACLOUD_PLATFORM_TOKEN`
into the sandbox automatically (this skill declares `connections: [acedatacloud]`).
- **Local `.env`:**
```bash
ACEDATACLOUD_PLATFORM_TOKEN=platform-v1-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
`