> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enfinitos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Operator Web SDK

> React component library — embed the EnfinitOS operator surfaces in your own admin UI.

`@enfinitos/sdk-operator-web` is a React component library that
tenants embed in their own admin UIs to surface the EnfinitOS
operator surfaces — rights registry, proof centre, compliance flows,
billing, pacing, pilots — without rebuilding the dashboards that ship
in the platform's reference web app.

<Note>
  **Publishes at launch.** `@enfinitos/sdk-operator-web` is typed,
  tested, and integration-ready. The package publishes to npm at the
  April 2027 production launch. You can request sandbox access today at
  [enfinitos.com/apply](https://enfinitos.com/apply) to start integrating
  against the sandbox API.
</Note>

```sh theme={null}
npm install @enfinitos/sdk-operator-web
```

```tsx theme={null}
import {
  EnfinitOSOperatorClient,
  OperatorProvider,
  RightsRegistryPanel,
  ProofExplorer,
} from "@enfinitos/sdk-operator-web";

const client = new EnfinitOSOperatorClient({
  apiBaseUrl: "https://sandbox.api.enfinitos.com",
  orgId: "org_...",
  authToken: () => fetchYourJwt(),
});

export default function AdminHome() {
  return (
    <OperatorProvider client={client}>
      <RightsRegistryPanel />
      <ProofExplorer />
    </OperatorProvider>
  );
}
```

Each component is a thin wrapper over the same `/v1` HTTP contract
documented in the [API reference](/api-reference) — rights issuance
goes through `POST /v1/rights/issue` and signed proof packs through
`GET /v1/proof-packs` (verified client-side with the open-source
auditor SDK). Resources that only ship with the April 2027 backend
(consent, billing, pacing, pilots) are gated behind an explicit
`launchSurface: true` client option so nothing silently 404s against
the live sandbox. Theming is tenant-controlled via CSS variables.

See the [README on the developer hub](https://enfinitos.com/developers/operator-web)
for the full component catalogue.
