Skip to main content

Introduction

Welcome to the Bizora Integration API documentation! Our API provides OpenAI-compatible endpoints for AI-powered tax research.

What is Bizora Integration API?

The Bizora Integration API is a powerful, OpenAI-compatible API that enables developers to:

  • 📊 Build tax research applications
  • 💬 Ask questions about tax codes and regulations
  • 🔄 Stream responses in real-time
  • 🌐 Enable web search mode for real-time internet-based answers
  • 🔐 Secure API key authentication

Key Features

OpenAI SDK Compatible

Use the official OpenAI Python or JavaScript SDK - just change the base URL and you're ready to go!

Real-time Streaming

Get responses as they're generated with Server-Sent Events (SSE) streaming.

Web Search Mode

Enable web search for real-time answers from the internet, perfect for current events and latest information.

For pricing information, refer to the pricing section in the platform.

Quick Example

Get started with streaming responses in real-time:

import openai

# Initialize the client
client = openai.OpenAI(
api_key="sk_live_YOUR_API_KEY",
base_url="https://integration-api-cf.damp-bar-d133.workers.dev/v2"
)

# Stream the response in real-time
stream = client.chat.completions.create(
model="bizora-1.0",
messages=[{"role": "human", "content": "What is section 179? Answer briefly."}],
stream=True
)

for chunk in stream:
if chunk.choices and chunk.choices[0].delta.content:
print(chunk.choices[0].delta.content, end="", flush=True)

Getting Started

Ready to start building? Check out our Quickstart Guide to make your first API call in minutes!

Need Help?