Quick Start Guide

Get started with Tenzro in under 10 minutes. From AI generation to app deployment, this guide will get you up and running with the complete platform.

Step-by-Step Setup

Create Your Account

Sign up for a free Tenzro account at platform.tenzro.com

2 minutes
Sign Up
bash
# Visit https://platform.tenzro.com/register
# 1. Enter your email and create password
# 2. Verify your email address
# 3. Complete account setup

# Welcome to Tenzro! 🎉

Get Your API Key

Generate an API key from your Tenzro Platform dashboard

1 minute
Get API Key
bash
# In your Tenzro Platform dashboard:
# 1. Go to "API Keys" section
# 2. Click "Generate New Key"
# 3. Give it a name (e.g., "Development")
# 4. Copy your API key

# Your API key will look like:
# sk_live_abc123def456ghi789...

Test Your Connection

Verify your API key works with a simple request

30 seconds
Test Connection
bash
# Test your API key with a simple request:
curl -X GET https://api.tenzro.com/cortex/models \
  -H "X-API-Key: sk_your_key_here"

# Expected response:
# {
#   "text_models": [
#     {"name": "gpt-4o", "provider": "openai"},
#     {"name": "claude-3.5-sonnet", "provider": "anthropic"}
#   ]
# }

Make Your First AI Request

Generate text with Tenzro Cortex AI using any model

bash
# Generate text with GPT-4o:
curl -X POST https://api.tenzro.com/cortex/generate \
  -H "X-API-Key: sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Write a hello world function in Python",
    "model": "gpt-4o",
    "max_tokens": 500
  }'

Deploy Your First App

Deploy a web application from GitHub in minutes

3 minutes
Deploy App
bash
# Deploy from GitHub:
curl -X POST https://api.tenzro.com/factory/deployments \
  -H "X-API-Key: sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-first-app",
    "github_repo": {
      "owner": "your-username",
      "repo": "your-repo",
      "branch": "main"
    },
    "framework": "nextjs"
  }'

Train a Model (Optional)

Submit a training job to Tenzro Grid for custom AI models

5 minutes
Train Model
bash
# Submit training job:
curl -X POST https://api.tenzro.com/grid/train \
  -H "X-API-Key: sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-first-training",
    "framework": "pytorch-latest",
    "code_repository": "https://github.com/user/training-code.git",
    "gpu_type": "A100",
    "parameters": {
      "learning_rate": 0.001,
      "epochs": 10
    }
  }'

Service Quick Starts

SDK Quick Start

Use our official SDKs for faster development in your preferred language:

🟨

JavaScript/TypeScript

npm install @tenzro/sdk
Full Docs
JavaScript/TypeScript Examplejavascript
import { Tenzro } from '@tenzro/sdk';

const tenzro = new Tenzro({
  apiKey: 'sk_your_key_here'
});

const response = await tenzro.cortex.generate({
  prompt: "Hello world!",
  model: "gpt-4o"
});

console.log(response.content);
🐍

Python

pip install tenzro
Full Docs
Python Examplepython
import tenzro

client = tenzro.Tenzro(api_key="sk_your_key_here")

response = client.cortex.generate(
    prompt="Hello world!",
    model="gpt-4o"
)

print(response.content)

Ready to Build Something Amazing?

You've got the basics! Now start building with the full power of the Tenzro platform. Join thousands of developers creating the next generation of AI applications.

Free tier available
No credit card required
Start building immediately