Getting Started

3D AI Studio

Getting Started

Get started with the 3D AI Studio API. Authentication setup, API key creation, credit purchase, and your first 3D generation request in minutes.

1. Create an Account

To use the API, you need a 3D AI Studio account. Sign in to the API Dashboard and complete the setup by setting a password and enabling two factor authentication.

2. Create an API Key

Go to the API Keys section of your dashboard and create a new key. Give it a name and save the key securely. The full key is only shown once at creation. You will use this key to authenticate all API requests.

3. Buy Credits

API requests require credits. Go to the Wallet section to purchase credits. Every endpoint has a fixed credit cost listed in its documentation. Your balance is visible at any time in the dashboard or via the wallet endpoint.

Base URL

All API requests are made to the following base URL. Include the full path for each endpoint.

Request
https://api.3daistudio.com

Authentication

Authenticate by including your API key in the Authorization header as a Bearer token.

Request
curl https://api.3daistudio.com/user/wallet/ \
  -H "Authorization: Bearer YOUR_API_KEY"

Request Format

All requests should use JSON for request and response bodies. Set the Content-Type header to application/json for POST/PUT requests.

Request
curl -X POST https://api.3daistudio.com/v1/3d-models/tencent/generate/rapid/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "a red chair", "enable_pbr": true}'

Rate Limiting

The API enforces rate limits. The default limit is 3 requests per minute. If you exceed this limit, you will receive a 429 status code. Custom rate limits can be configured through the dashboard settings.