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

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

Support