Overview

Quickstart

1
Get an API token

Sign up at platform.acedata.cloud and open the API page for the service you want (for example, the Suno Audios API or the Flux API). Click Acquire to get a token — this is the same token every CLI uses.

2
Install a CLI

Each tool ships on PyPI. Install the one matching what you want to generate:

pip install suno-cli          # music
pip install flux-pro-cli       # images
pip install serp-cli           # search
# or the unified CLI for everything:
pip install acedatacloud-cli

Requires Python 3.10+. uv pip install <package> works the same way and is faster.

3
Set your token
export ACEDATACLOUD_API_TOKEN=your_token_here

Or save it once with the unified CLI: adc auth login. See Authentication for the .env file option.

4
Run your first command
suno generate "A happy birthday song with acoustic guitar"
flux generate "A majestic mountain landscape at golden hour"
serp search "artificial intelligence"

Each command returns a task ID. Check on it or block until it's done:

suno wait <task-id>

Pick your tool#

See the full CLI list — every video, image, music, and search tool follows this same pattern.

Next
Wire the token into scripts and CI

Once you're generating from the terminal, --json output makes it easy to pipe into automation.

Updated

Was this page helpful?