Skip to content
BUILDING INTELLIGENCE, BY CONTRACT

Build building intelligence into your product.

Search only what each user may access, stream answers grounded in source documents, and integrate through the API, TypeScript SDK, React, or MCP.

Permission-awareCitation-nativeStreamed live
B13Barcode Office Complex847 permission-scoped documents
Authorised scope

Ask the building

SIMULATED DATAPowered by the public useChat hook
What ventilation system is installed?

Quick start

A cited chat in one component.

Exchange your API key for a short-lived session token on the server, then pass it to the React provider. Permissions carry through automatically.

  • Streaming and cancellation included
  • Inline citations enabled by default
  • Headless hooks available when you need them
Follow the complete setup guide
BuildingAssistant.tsxtsx
import { FindableChat, FindableProvider } from '@findable-ai/react';
import '@findable-ai/react/styles.css';

export function BuildingAssistant({ sessionToken }: { sessionToken: string }) {
  return (
    <FindableProvider token={sessionToken} buildingOwnerId="YOUR_OWNER_ID">
      <FindableChat buildingId="bld-789" showCitations />
    </FindableProvider>
  );
}