DEVELOPER CENTER

NineBit Developer
Documentation & SDKs

Explore API references, download client libraries, and follow onboarding guides to integrate our platforms into your technology stack.

CIQ — Document Intelligence Logo

CIQ — Document Intelligence

Integrate LLM indexing and Retrieval-Augmented Generation (RAG) into your workflows.

BeyondOTP — Identity Verification Logo

BeyondOTP — Identity Verification

Embed mobile-first presence authentication and custom security APIs in your application.

EkRasta — Location & Routing Logo

EkRasta — Location & Routing

Enable landmark-based hyper-local navigation and custom community routing pipelines.

CaseFlow — Workflow SaaS Logo

CaseFlow — Workflow SaaS

Automate case lifecycles, track documents securely, and configure webhooks.

CIQ API Quickstart

Get up and running with CIQ in less than 5 minutes using our official clients.

main.py
import ciq

# Initialize CIQ client with API key
client = ciq.Client(api_key="nb_live_...")

# Index unstructured document (PDF, DOCX, TXT)
document = client.documents.index(
    file_path="annual_report.pdf",
    metadata={"department": "finance"}
)

# Ask question using RAG workflow
response = client.qa.ask(
    document_id=document.id,
    question="What was our EBITDA in Q4?"
)

print(f"Answer: {response.answer}")
print(f"Sources: {response.citations}")