curl. This page collects the recipes you need most often. Replace eyJhbGciOi... with your session JWT and bfvk-XXXXXXXXXXXXXXXX with your API key.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Copy-paste cURL recipes for login, API key management, model downloads, wallet top-ups, and invoice downloads on the Aria Compute API.
curl. This page collects the recipes you need most often. Replace eyJhbGciOi... with your session JWT and bfvk-XXXXXXXXXXXXXXXX with your API key.
curl -X POST https://ariacompute.com/api/auth/login \
-H "Content-Type: application/json" \
-d '{"identifier": "[email protected]", "password": "..."}'
curl -H "Authorization: Bearer eyJhbGciOi..." \
https://ariacompute.com/api/auth/me
curl -X POST https://ariacompute.com/api/api-keys \
-H "Authorization: Bearer eyJhbGciOi..." \
-H "Content-Type: application/json" \
-d '{"name": "production"}'
curl -L -H "Authorization: Bearer bfvk-XXXXXXXXXXXXXXXX" \
"https://ariacompute.com/api/models/gemma-4-e2b-it/download?quant=int4&sdk=v1.0" \
-o gemma-4-e2b-it_q4.zip
curl -H "Authorization: Bearer bfvk-XXXXXXXXXXXXXXXX" \
-H "Accept: application/json" \
"https://ariacompute.com/api/models/gemma-4-e2b-it/download?quant=int4&sdk=v1.0"
curl -X POST https://ariacompute.com/api/billing/payments \
-H "Authorization: Bearer eyJhbGciOi..." \
-H "Content-Type: application/json" \
-d '{"provider": "stripe", "amount": 20, "currency": "USD"}'
curl -H "Authorization: Bearer eyJhbGciOi..." \
https://ariacompute.com/api/billing/payments/pay_01H...
curl -L "https://ariacompute.cn/api/billing/invoices/pay_01H.../download?token=eyJhbGciOi..." \
-o invoice.pdf
curl -s https://ariacompute.com/api/download/engine-latest | jq .
jq for readable output. On the China site, swap ariacompute.com for ariacompute.cn in every URL.Was this page helpful?