← ClaudeAtlas

acedatacloud-apilisted

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.
AceDataCloud/Skills · ★ 8 · AI & Automation · score 71
Install: claude install-skill AceDataCloud/Skills
# 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. > **Full details:** See [authentication](../_shared/authentication.md) for token types and usage. ## 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-20250514", messages=[{"role": "user", "content": "Hello!"}] ) ``` ```javascript import OpenAI from "openai"; const client = new OpenAI({ apiKey: "YOUR_API_TOKEN", baseURL: "https://api.acedata.cloud/v1" }); const response = await client.chat.completions.create({ model: "gpt-4.1", messages: [{ role: "user", content: "Hello!" }] }); ``` ## Request Patterns ### Synchronous APIs Some APIs return results immediately (e.g., face transform, search): ```bash curl -X POST https://api.acedata.cloud/face/analyze \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{"image_url": "https://example.com/photo.jpg"