BrainBox logo

BrainBox

API Documentation

A complete guide to integrating with the BrainBox API

Authentication

BrainBox authenticates API requests using Bearer Tokens. You must include an API key in the Authorization header of every request.

Authorization: Bearer YOUR_API_KEY

Your API Key

You can generate and manage API keys from the BrainBox dashboard under Account → API Keys. Keys follow the format: bbfe_[prefix]_[secret_key]

Core Concepts

Intelligence Units

Some operations consume units for AI-intensive tasks. Your plan includes a monthly quota.

  • /retrieve-documents: 1 Unit
  • /retrieve-full-documents: 0 Units (Free)

Access Control

API access is tied to user permissions for a specific box.

  • Required Role: Owner or Admin
  • Viewer and Editor roles cannot use the API.

Technical Limits

Each API key and user account are subject to different rate limits to ensure optimal API usage. You can easily track your usage with headers included in API responses indicating your remaining rate limit.

ResourceRate LimitWindow
API Key100 requests60 seconds
User Account15,000 requests24 hours

Rate Limit Headers

HTTP headers returned by the API to help you monitor and manage your request limits.

X-RateLimit-Hits

Number of requests used in the current window.

X-RateLimit-Remaining-Key

Requests left for the API key in the current window.

X-RateLimit-Remaining-User

Requests left for the user account in this 24-hour period.

X-RateLimit-Reset-Key

Time when the API key rate limit resets.

X-RateLimit-Reset-User

Time when the user's rate limit resets.

Error Handling

Error Response Format

Failed requests return a standard error object with a unique code and details.

{ "success": false, "error": { "code": "B3002", "category": "permissions", "summary": "Unauthorized user", "cause": "API Key not found" } }

Common Error Codes

B3002

Authentication Error: Invalid, expired, or missing API key, or insufficient permissions.

B3107

Quota Exceeded: Insufficient intelligence units.

B1004

Invalid Parameters: Missing or invalid request parameters.

B1000

Unknown Error: Unexpected server error.

Code Examples

cURL Examples
# Health check curl -X GET "https://app.brainbox.com.co/api/public/v1/check" \ -H "Authorization: Bearer YOUR_API_KEY" # Semantic document retrieval (AI search) curl -X POST "https://app.brainbox.com.co/api/public/v1/boxes/YOUR_BOX_ID/retrieve-documents" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "query": "What is machine learning?", "sources": ["file_123", "file_456"] }' # Full document retrieval (complete content) curl -X POST "https://app.brainbox.com.co/api/public/v1/boxes/YOUR_BOX_ID/retrieve-full-documents" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "sources": ["file_123", "file_456"] }'
// A robust BrainBox API client for Node.js class BrainBoxAPI { constructor(apiKey) { this.apiKey = apiKey this.baseUrl = "https://app.brainbox.com.co/api/public/v1" } async _request(method, endpoint, body = null) { const url = `${this.baseUrl}/${endpoint}` const options = { method, headers: { Authorization: `Bearer ${this.apiKey}`, "Content-Type": "application/json", }, } if (body) { options.body = JSON.stringify(body) } try { const response = await fetch(url, options) const data = await response.json() if (!response.ok || !data.success) { const error = data.error || { summary: "Unknown API error" } throw new Error( `API Error (${error.code}): ${error.summary} - ${error.cause}` ) } return data.data } catch (error) { console.error(`Request failed: ${error.message}`) throw error } } // Semantic search with AI ranking (1 intelligence unit) async searchDocuments(boxId, query, sources = null) { const endpoint = `boxes/${boxId}/retrieve-documents` const body = { query } if (sources) body.sources = sources return this._request("POST", endpoint, body) } // Full document retrieval (FREE - no intelligence units) async getFullDocuments(boxId, sources) { if (!sources || sources.length === 0) { throw new Error("Sources array is required for getFullDocuments.") } const endpoint = `boxes/${boxId}/retrieve-full-documents` return this._request("POST", endpoint, { sources }) } // Health check async healthCheck() { return this._request("GET", "check") } } // --- Usage Example --- const apiKey = process.env.BRAINBOX_API_KEY if (!apiKey) { throw new Error("BRAINBOX_API_KEY environment variable not set.") } const client = new BrainBoxAPI(apiKey) const boxId = "your-box-id" const fileIds = ["file_123", "file_456"] async function main() { try { console.log("Performing health check...") const health = await client.healthCheck() console.log("Health check successful:", health) console.log("nSearching for documents...") const searchResults = await client.searchDocuments( boxId, "What are the key financial takeaways?", fileIds ) console.log( `Found ${searchResults.documents[0].documents.length} relevant chunks.` ) console.log( `Consumed ${searchResults.usage.intelligence_units_consumed} intelligence unit.n` ) console.log("Retrieving full documents...") const fullDocs = await client.getFullDocuments(boxId, fileIds) console.log( `Retrieved ${fullDocs.usage.documents_retrieved} full documents with ${fullDocs.usage.total_pages} total pages.` ) fullDocs.documents.forEach((doc) => { console.log(`- ${doc.fileName} (${doc.pages.length} pages)`) }) } catch (error) { console.error(error.message) } } main()
import os import requests from typing import List, Optional, Dict, Any class BrainBoxAPI: def __init__(self, api_key: str): if not api_key: raise ValueError("API key cannot be empty.") self.api_key = api_key self.base_url = "https://app.brainbox.com.co/api/public/v1" self.session = requests.Session() self.session.headers.update({ 'Authorization': f'Bearer {api_key}', 'Content-Type': 'application/json' }) def _request(self, method: str, endpoint: str, json: Optional[Dict[str, Any]] = None) -> Dict[str, Any]: url = f"{self.base_url}/{endpoint}" try: response = self.session.request(method, url, json=json) response.raise_for_status() data = response.json() if not data.get('success'): error = data.get('error', {'summary': 'Unknown API error'}) raise ValueError(f"API Error ({error.get('code')}): {error.get('summary')} - {error.get('cause')}") return data.get('data') or data except requests.exceptions.RequestException as e: raise ConnectionError(f"Request failed: {e}") from e def search_documents(self, box_id: str, query: str, sources: Optional[List[str]] = None) -> Dict[str, Any]: """Search for relevant documents using AI semantic search (1 intelligence unit).""" payload = {'query': query} if sources: payload['sources'] = sources return self._request('POST', f"boxes/{box_id}/retrieve-documents", json=payload) def get_full_documents(self, box_id: str, sources: List[str]) -> Dict[str, Any]: """Retrieve complete content of specified documents (FREE - no intelligence units).""" if not sources: raise ValueError("Sources list cannot be empty for get_full_documents.") return self._request('POST', f"boxes/{box_id}/retrieve-full-documents", json={'sources': sources}) def health_check(self) -> Dict[str, Any]: """Performs a simple health check against the API.""" return self._request('GET', 'check') # --- Usage Example --- if __name__ == "__main__": api_key = os.getenv('BRAINBOX_API_KEY') if not api_key: raise ValueError("BRAINBOX_API_KEY environment variable not set.") client = BrainBoxAPI(api_key) box_id = 'your-box-id' file_ids = ['file_123', 'file_456'] try: print("Performing health check...") health = client.health_check() print(f"Health check successful: {health.get('message')}\n") print("Searching for documents...") search_results = client.search_documents(box_id, 'What are the key financial takeaways?', file_ids) print(f"Found {len(search_results['documents'][0]['documents'])} relevant chunks.") print(f"Consumed {search_results['usage']['intelligence_units_consumed']} intelligence unit.\n") print("Retrieving full documents...") full_docs = client.get_full_documents(box_id, file_ids) print(f"Retrieved {full_docs['usage']['documents_retrieved']} documents with {full_docs['usage']['total_pages']} total pages.") for doc in full_docs['documents']: print(f"- {doc['fileName']} ({len(doc['pages'])} pages)") except (ValueError, ConnectionError) as e: print(f"Error: {e}")

Contact Us

If you encounter any issues or have questions about the API, feel free to reach out to our support team. Visit our contact page for more information.