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

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

Support

Quick Start

1. Sign Up

Create an account at TurboAPI to get your API key.

2. Install SDK

npm install @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

Support