Getting Started
Get started with TurboAPI documentation and learn how to integrate AI APIs.
Getting Started
Welcome to the TurboAPI documentation! This guide will help you get up and running quickly.
Quick Start
1. Sign Up
Create an account at TurboAPI to get your API key.
2. Install SDK
npm install @turboapi/sdk
pnpm add @turboapi/sdk
yarn add @turboapi/sdk
3. Initialize Client
import { TurboAPI } from '@turboapi/sdk';
const client = new TurboAPI({
apiKey: process.env.TURBOAPI_API_KEY,
});
4. Make Your First Request
// Generate an image
const image = await client.images.generate({
model: 'dall-e-3',
prompt: 'A beautiful sunset over the ocean',
n: 1,
});
console.log(image.url);
Next Steps
- Explore API Reference for all available endpoints
- Check out Examples for complete use cases
- Learn about Authentication for secure API access
Support
- 📧 Email: [email protected]
- 💬 Discord: Join our community
- 📖 FAQ for common questions
Quick Start
1. Sign Up
Create an account at TurboAPI to get your API key.
2. Install SDK
npm install @turboapi/sdk
pnpm add @turboapi/sdk
yarn add @turboapi/sdk
3. Initialize Client
import { TurboAPI } from '@turboapi/sdk';
const client = new TurboAPI({
apiKey: process.env.TURBOAPI_API_KEY,
});
4. Make Your First Request
// Generate an image
const image = await client.images.generate({
model: 'dall-e-3',
prompt: 'A beautiful sunset over the ocean',
n: 1,
});
console.log(image.url);
Next Steps
- Explore API Reference for all available endpoints
- Check out Examples for complete use cases
- Learn about Authentication for secure API access
Support
- 📧 Email: [email protected]
- 💬 Discord: Join our community
- 📖 FAQ for common questions