Everything you need to build on Orphica
Guides, API reference, and recipes for shipping a custom CRM.
Getting started
Data model
SDK
Quick start with the SDK
Install @orphica/sdk, generate an API key in Settings, and you're live.
import { Orphica } from "@orphica/sdk";
const orphica = new Orphica({ apiKey: process.env.ORPHICA_API_KEY! });
const { records } = await orphica.records.list({
object: "companies",
});
await orphica.records.create({
object: "companies",
values: { name: "Acme", domain: "acme.com" },
});