Official Documentation

TizBiz AI
Knowledge Base

Everything you need to set up your account, understand the AI rendering engine, and put your viral growth on autopilot.

Getting Started

Welcome to TizBiz AI! Setting up your brand properly is the most important step to generating high-quality, viral-worthy content. Our AI relies heavily on the initial context you provide.

Creating Your Account

When you sign up using your email or Google Account, you will be directed to the Setup Your Brand page. Here, you must provide:

  • Brand Name: The exact name of your company or creator alias.
  • Website: Your primary URL (used by our AI to contextually verify your industry).
  • Description: Be as literal as possible. If you run a local bakery, write "We sell bread and pastries locally." Avoid using buzzwords or corporate jargon here.
Do not overcomplicate your description. The AI engine is trained to extract the core business logic and adapt its tone accordingly.

AI Generation & Persona

TizBiz AI utilizes a Chameleon Persona Engine. This means the AI changes its entire personality based on the industry you provided during onboarding.

How It Adapts

If you register as a GYM, the AI will generate memes complaining about "leg day" and "protein shakes". If you register as a B2B SaaS, it will joke about "manual operations" and "saving hours of work".

  • The AI is strictly forbidden from using corporate jargon for local/physical businesses.
  • It generates relatable, first-person TikTok hooks like "POV:" or "Me when...".
  • Every generation is 100% unique and does not repeat previous jokes.

Swipe UI & Library

We replaced complex editing timelines with a simple Tinder-style swiping interface. This allows you to curate a month's worth of content in minutes.

The Infinite Queue

When you navigate to the Swipe Tizs page, you will be presented with a stack of rendered concepts.

  • Swipe Right (Save): Saves the video to your Library and consumes 1 credit from your weekly limit.
  • Swipe Left (Skip): Discards the video and loads a new one. This does not consume a credit.

If your queue drops below 5 videos, the system will silently communicate with the AI in the background to generate more, ensuring you never run out of ideas.

Browser Rendering

To avoid massive server wait times and costs, TizBiz AI utilizes your device's GPU to hardcode (burn-in) the text directly onto the video pixels.

Downloading a Video

When you click the download icon in your Library, a loading overlay will appear. During this time:

  1. The system pre-loads the custom typography (Plus Jakarta Sans).
  2. It draws the video frame-by-frame onto a hidden HTML5 Canvas.
  3. It applies the text overlay with a dynamic drop-shadow for readability.
  4. It exports the combined result as a high-quality .mp4 file.
Do not close or switch tabs during the rendering process, as modern browsers pause Canvas operations in inactive tabs to save battery.

API Reference

Users on the Business Plan can access our generation engine via REST API to build custom internal tools or connect to third-party schedulers. All API requests must be made over HTTPS.

Authentication

Authenticate your account by sending your API key in the Authorization header of your HTTP request. You can generate an API key in your Dashboard Settings.

Authorization: Bearer YOUR_API_KEY

Endpoints

POST /v1/generate

Triggers the AI engine to generate new viral video concepts based on your brand persona.

  • context (string, required)
    Overrides the default business context for this specific generation.
  • count (integer, optional)
    Number of videos to generate. Max is 5. Default is 3.
curl -X POST https://api.tizbiz.com/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "context": "A coffee shop in London launching a new matcha latte",
    "count": 2
  }'

Response (200 OK):

{
  "success": true,
  "data": [
    {
      "id": 1042,
      "text": "POV: You promised you'd save money but walked past our coffee shop",
      "video_url": "https://tizbiz.com/videos/food/coffee_bg.mp4"
    },
    {
      "id": 1043,
      "text": "Me explaining to my wallet why I need my 4th matcha today",
      "video_url": "https://tizbiz.com/videos/food/matcha_bg.mp4"
    }
  ]
}

GET /v1/queue

Retrieves all generated videos that are currently waiting in your queue (not yet swiped/saved).

curl -X GET https://api.tizbiz.com/v1/queue \
  -H "Authorization: Bearer YOUR_API_KEY"

POST /v1/publish

Instantly publish a saved video from your library to connected social platforms.

  • tiz_id (integer, required)
    The ID of the saved video.
  • platforms (array, required)
    Array of target platforms. Options: ["tiktok", "instagram", "youtube"]
curl -X POST https://api.tizbiz.com/v1/publish \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tiz_id": 1042,
    "platforms": ["tiktok", "instagram"]
  }'

Billing & Limits

TizBiz operates on a weekly cycle to ensure you have a constant flow of fresh content without burning through monthly credits in a single day.

Weekly Save Limits

  • Free Plan: 3 Video Saves per week.
  • Pro Plan: 20 Video Saves per week.
  • Business Plan: Unlimited Saves.

Your limits automatically reset every Monday. Note that skipping a video does not consume any credits. You only spend a credit when you successfully Swipe Right and save a video to your library.

Troubleshooting

AI Generating Irrelevant Content

If the AI is generating jokes that have nothing to do with your business, your initial onboarding description might be too vague. Navigate to your Account Settings and update your Business Description to be extremely literal (e.g., instead of "We revolutionize audio", write "We are a local music radio station").

Download Produces a Black Screen

This occurs if your browser blocks Cross-Origin Resource Sharing (CORS) on the video source during the Canvas rendering phase. Ensure you are using a modern, updated browser like Google Chrome, Safari, or Microsoft Edge. Ad-blockers or aggressive privacy extensions (like Brave Shields) can also block the render engine.

"Weekly Limit Reached" Error

You have successfully saved the maximum number of videos allowed by your current plan for this week. Wait until Monday for a reset, or navigate to the Dashboard to upgrade to a Pro or Business plan.

Can't find what you're looking for?

Our support team is always ready to help you optimize your AI persona or fix integration issues.

Contact Support