ProbizAI
API Access

ProbizAI API Reference

Integrate AI-powered business intelligence into your applications with our comprehensive API

API Overview

RESTful API with JSON responses and comprehensive documentation

Authentication
Secure API access using API keys and OAuth 2.0
Authorization: Bearer YOUR_API_KEY

All API requests require authentication using your API key in the Authorization header.

Base URL
All API endpoints are relative to the base URL
https://api.probizai.com/v1

Current API version is v1. All endpoints are versioned for backward compatibility.

Rate Limits
API usage limits to ensure fair usage and performance
1000 requests/hour

Rate limits vary by plan. Enterprise customers can request higher limits.

API Endpoints

Complete reference for all available API endpoints

AI Chat
POST
Send business queries to the AI assistant and receive intelligent responses
POST /api/v1/chat

Parameters:

  • message (string, required) - The business query or question
  • context (object, optional) - Additional business context
  • session_id (string, optional) - Session identifier for conversation continuity
Compliance Calendar
GET
Retrieve upcoming compliance deadlines and regulatory requirements
GET /api/v1/compliance/calendar

Parameters:

  • start_date (string, optional) - Start date for calendar range
  • end_date (string, optional) - End date for calendar range
  • type (string, optional) - Filter by compliance type (GST, TDS, MCA)
Financial Analysis
POST
Upload financial data and receive AI-powered analysis and insights
POST /api/v1/financial/analyze

Parameters:

  • data (object, required) - Financial data in JSON format
  • period (string, required) - Analysis period (monthly, quarterly, yearly)
  • metrics (array, optional) - Specific metrics to analyze
Funding Opportunities
GET
Discover relevant funding opportunities based on business profile
GET /api/v1/funding/opportunities

Parameters:

  • industry (string, optional) - Filter by industry sector
  • stage (string, optional) - Business stage (startup, growth, expansion)
  • amount_range (string, optional) - Funding amount range

Code Examples

Get started quickly with these code examples

JavaScript Example
Making a request to the AI Chat endpoint using JavaScript
const response = await fetch('https://api.probizai.com/v1/chat', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    message: 'How can I improve my cash flow?',
    context: {
      business_type: 'retail',
      monthly_revenue: 50000
    }
  })
});

const data = await response.json();
console.log(data.response);

Get Your API Key

Start building with ProbizAI API today. Sign up for free and get instant access.