Documentation

Get started with JuiceTeam products

⚙️
API-KEY CONTROLLER

JuiceCore

Getting Started

JuiceCore is an intelligent AI API router that provides access to 100+ AI models through a single unified API with smart routing that saves up to 90% on costs.

📚 Full Documentation

For complete documentation, API reference, pricing, and getting started guides, please visit the official JuiceCore website:

Visit JuiceCore Documentation →

Key Features:

  • Access to 100+ AI models (GPT-4, Claude, Gemini, and more)
  • Intelligent routing saves up to 90% on AI costs
  • OpenAI-compatible API for easy integration
  • Automatic failover and load balancing
  • Real-time streaming support
  • Detailed usage statistics and analytics
🎨
AI WEB BUILDER

AI Web Builder (AWB)

Getting Started

AWB allows you to create professional websites using AI. No coding required:

  1. Step 1: Visit awb.juiceteam.io and create an account
  2. Step 2: Click "Create New Project" and describe your business
  3. Step 3: Choose your preferred design style and color scheme
  4. Step 4: Let AI generate your website (takes 30-60 seconds)
  5. Step 5: Customize the generated site using our visual editor
  6. Step 6: Deploy your website with one click to our global CDN
💡 Note:

You can regenerate sections or the entire site at any time if you're not satisfied with the results.

🤖
AI ASSISTANT

JuiceAI

Getting Started

JuiceAI is your intelligent coding assistant. Here's how to integrate it:

  1. Step 1: Install the JuiceAI extension for your IDE (VS Code, IntelliJ, etc.)
  2. Step 2: Sign in with your JuiceTeam account
  3. Step 3: Configure your preferences in the extension settings
  4. Step 4: Start coding - JuiceAI will provide suggestions automatically
  5. Step 5: Use natural language comments to generate code blocks
⌨️
COMMAND LINE INTERFACE

JuiceAI-CLI

Getting Started

Manage your entire JuiceTeam ecosystem from the command line:

  1. Step 1: Install JuiceAI-CLI globally:
    npm install -g @juiceteam/cli
  2. Step 2: Authenticate with your account:
    juice login
  3. Step 3: View available commands:
    juice --help
  4. Step 4: Deploy your first project:
    juice deploy ./my-project
🔐
AUTHENTICATION

JuiceID

Getting Started

Integrate secure OAuth 2.0 authentication into your application:

  1. Step 1: Register your application at id.juiceteam.io
  2. Step 2: Get your Client ID and Client Secret
  3. Step 3: Configure redirect URIs for your application
  4. Step 4: Install the JuiceID SDK:
    npm install @juiceteam/id
  5. Step 5: Initialize OAuth flow in your app:
    import { JuiceID } from '@juiceteam/id';
    const auth = new JuiceID({
      clientId: 'your-client-id',
      redirectUri: 'your-redirect-uri'
    });
💡 Note:

JuiceID supports single sign-on (SSO) across all JuiceTeam products for seamless user experience.