Get Started in 15 Minutes
1. Sign Up on Z.AI platform
2. Obtain your API Key
3. Install SDK or use REST API
4. Make your first API call
Code snippet:
```
import zai_sdk
client = zai_sdk.Client(api_key='YOUR_API_KEY')
response = client.generate('Hello, Z.AI!')
print(response.text)
```