Before you begin
- Have an Aria Compute account (any region).
- Create an API key in the dashboard, or sign in to obtain a session JWT.
- The base URL for all examples is
https://ariacompute.com/api(international). If you are using the China site, replace the host withariacompute.cn.
1
List available models
Call the public models endpoint to see all bundles and their supported quantizations.The response includes each model slug, available quant values (
int4, int8, int326), and SDK compatibility. Pick the slug and quantization you need.2
Create or locate an API key
Open the Dashboard API Keys page, then click Create. Copy the full key starting with
bfvk-. It is shown only once.3
Request a download link
By default, the download endpoint returns a
302 Found redirect to a short-lived S3 presigned URL. Follow the redirect with -L:4
Request JSON metadata instead
If you want the URL without immediately following it, send Use the
Accept: application/json or add ?format=json.url field to start your own download. The filename field is the suggested output name.5
Directory downloads (ZIP stream)
When the bundle is stored as a directory, the endpoint streams a ZIP file with
Content-Disposition: attachment. Save it directly:What you receive
Each bundle contains at minimum:weight.bin— the quantized weightsconfig.json— model configuration- Optional tokenizer sidecar files
Errors to expect
Next steps
- Manage API Keys — rotate or revoke keys.
- Download engine and router releases — unauthenticated release assets.