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 scopeAsk the building
SIMULATED DATAPowered by the public useChat hook
What ventilation system is installed?
Choose your integration
Start at the right layer.
The same permission model and cited answers are available from every surface. Choose how much interface and transport you want Findable to own.
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
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>
);
}