Official Documentation
Everything you need to set up your account, understand the AI rendering engine, and put your viral growth on autopilot.
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.
When you sign up using your email or Google Account, you will be directed to the Setup Your Brand page. Here, you must provide:
TizBiz AI utilizes a Chameleon Persona Engine. This means the AI changes its entire personality based on the industry you provided during onboarding.
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".
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.
When you navigate to the Swipe Tizs page, you will be presented with a stack of rendered concepts.
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.
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.
When you click the download icon in your Library, a loading overlay will appear. During this time:
.mp4 file.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.
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
Triggers the AI engine to generate new viral video concepts based on your brand persona.
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"
}
]
}
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"
Instantly publish a saved video from your library to connected social platforms.
["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"]
}'
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.
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.
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").
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.
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.
Our support team is always ready to help you optimize your AI persona or fix integration issues.
Contact Support