Documentation

Everything you need to integrate and use JomBot AI in your applications.

Documentation

Getting Started with JomBot AI

Welcome to JomBot AI! This guide will help you get up and running with our AI platform in just a few minutes.

Quick Start

1

Sign up for an account

Create your free JomBot AI account to get started.

2

Get your API key

Generate your API key from the dashboard.

3

Make your first API call

Use our SDK or make direct HTTP requests.

Installation

Node.js / JavaScript

npm install @jombot/ai-sdk

Python

pip install jombot-ai

Code Examples

javascript

// Initialize JomBot AI client
import { JomBotAI } from '@jombot/ai-sdk';

const client = new JomBotAI({
  apiKey: process.env.JOMBOT_API_KEY,
  environment: 'production'
});

// Generate content
const response = await client.content.generate({
  type: 'blog_post',
  topic: 'AI in healthcare',
  tone: 'professional',
  length: 'medium'
});

console.log(response.content);

python

# Initialize JomBot AI client
from jombot import JomBotAI

client = JomBotAI(
    api_key=os.getenv('JOMBOT_API_KEY'),
    environment='production'
)

# Generate content
response = client.content.generate(
    type='blog_post',
    topic='AI in healthcare',
    tone='professional',
    length='medium'
)

print(response.content)

curl

curl -X POST https://api.jombot.ai/v1/content/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "blog_post",
    "topic": "AI in healthcare",
    "tone": "professional",
    "length": "medium"
  }'