Skip to main content

1. Obtain API Key

Register an account and create API credentials at platform.acedata.cloud.
1

Register an Account

Visit platform.acedata.cloud to complete registration.
2

Subscribe to Services

Browse available services and click Get to subscribe. Most services offer free quotas.
3

Create Credentials

Go to the Credentials page of the service and create an API Token.

2. Send Your First Request

All APIs use Bearer Token authentication:
curl -X POST https://api.acedata.cloud/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4-20250514",
    "messages": [{"role": "user", "content": "你好!"}]
  }'

3. Explore More APIs