Getting Started
Get started with TurboAPI documentation and learn how to integrate AI APIs.
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 @turboapiai/sdk
pnpm add @turboapiai/sdk
yarn add @turboapiai/sdk
pip install turboapi-sdk
go get github.com/turboapiai/turboapi-sdk-go@latest
3. Initialize Client
import { TurboAPIClient } from '@turboapiai/sdk';
const client = new TurboAPIClient({
apiKey: process.env.TURBOAPI_API_KEY,
});
4. Make Your First Request
// Call an AI API
const task = await client.call.createAndWait('api-slug', {
prompt: 'A beautiful sunset over the ocean',
});
console.log(task.output);
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