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 deep research mode for comprehensive tax analysis
  • 🔐 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.

Deep Research Mode

Enable deep research for thorough tax code analysis and comprehensive answers.

Simple Pricing

Add balance to your account and pay per request. No subscriptions, no commitments.

Quick Example

import openai

client = openai.OpenAI(
api_key="sk_live_YOUR_API_KEY",
base_url="https://dev.api-bizora.ai/v1"
)

response = client.chat.completions.create(
model="bizora",
messages=[{"role": "user", "content": "Hello!"}],
extra_body={"entity_id": "your_entity_id"}
)

print(response.choices[0].message.content)

Getting Started

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

Need Help?