EIGENN.
docsguidesapichangelogpricingsign in
EIGENN.

SDKs

Use generated TypeScript, Python, Go, or Rust clients that follow Eigenn's public OpenAPI v1 contract.

Eigenn generates its SDKs from the current public OpenAPI document. They give typed resource clients, request models, response models, and bearer authentication for public API v1.

Available Clients

LanguagePackage
TypeScript@oppulence/canvas-sdk
Pythonoppulence-canvas-sdk
Gogithub.com/Oppulence-Engineering/oppulence-canvas/sdk/go
Rustoppulence-canvas-sdk

In the repository, the current contract and SDK version is 1.0.0.

Install a Client

npm install @oppulence/canvas-sdk
pip install oppulence-canvas-sdk
go get github.com/Oppulence-Engineering/oppulence-canvas/sdk/go
cargo add oppulence-canvas-sdk

TypeScript Example

Pass either an Eigenn API key or an OAuth access token through accessToken. The generated client sends it as an Authorization bearer token.

import {
  Configuration,
  CustomersApi,
} from "@oppulence/canvas-sdk";

const token = process.env.EIGENN_API_TOKEN;

if (!token) {
  throw new Error("EIGENN_API_TOKEN is required");
}

const configuration = new Configuration({
  accessToken: token,
  basePath: "https://api.eigenn.io/v1",
});

const customers = new CustomersApi(configuration);
const page = await customers.listCustomers({ pageSize: 25 });

console.log(page.meta.hasNextPage);

Keep the token in a server-side secret store. Do not initialize a privileged client in browser code.

Choose the Environment

EnvironmentBase URL
Productionhttps://api.eigenn.io/v1
Sandboxhttps://api-staging.eigenn.io/v1

Set the base URL explicitly in long-lived integrations. Confirm that the credential and the test data belong to the intended environment before you send a write.

Generated Resource Groups

The generated clients include resource groups for customers, invoices, recurring invoices, transactions, bank accounts, documents, and inbox items. They also include reports, metrics, tags, tracking, teams, users, OAuth, integration callbacks, and other operations that OpenAPI contains.

Two boundaries matter:

  • There is no public Workflows SDK group because public OpenAPI v1 has no workflow endpoints.
  • The generated Webhooks group represents first-party provider callback endpoints. It does not manage general outbound subscriptions.

Use the focused API pages to understand these limits before you depend on a generated class name.

Pagination and Errors

Generated clients model the same cursor response used by the REST API:

  • the results are in data
  • the next opaque cursor is in meta.cursor
  • meta.hasNextPage tells you whether to continue
  • meta.hasPreviousPage describes the current page

Do not construct or decode cursors. Pass the returned cursor to the next request. Keep the same filters and sort.

Each generated client shows non-2xx responses in the way that its language generator defines. Keep the response status, the Retry-After header, the rate-limit headers, and the request ID when they are available.

Idempotent Writes

Authenticated write operations documented in OpenAPI accept an optional Idempotency-Key header with a maximum length of 128 characters. The generated methods show that header as an operation parameter.

Reuse a key only for the same logical write. Eigenn can replay a successful response for that identity, method, path, query, and key. A payload change with the same key is not a supported way to submit a new operation.

Keep the Client Current

  1. Pin the SDK version in your dependency manager.
  2. Read the public API changelog before you upgrade.
  3. Regenerate or upgrade when the OpenAPI contract changes.
  4. Run contract tests against sandbox.
  5. Confirm the necessary scopes for every operation that your integration calls.

Related Pages

  • Authentication
  • Pagination
  • Rate Limits
  • Errors
  • Developer API Setup

MCP

Connect an MCP client to scoped Eigenn finance tools over a remote, OAuth-discoverable endpoint.

Webhooks

Learn how Eigenn uses provider callbacks and app-specific automation deliveries, and where no universal webhook contract exists.

On this page

Available ClientsInstall a ClientTypeScript ExampleChoose the EnvironmentGenerated Resource GroupsPagination and ErrorsIdempotent WritesKeep the Client CurrentRelated Pages

Eigenn docs

current product

Overview
Overview
OverviewAccount PreferencesAssistant AutomationAssistant Command CenterBank ConnectionsBilling and UsageBudgets and ForecastCommand CenterCustomer LifecycleCustomer RecordsCustomersDeveloper PlatformDocument Processing and ExtractionDocument VaultFinancial Analytics and ReportsFinancial OverviewInvoice InsightsInvoice ProductsInvoicesMarketplace IntegrationsNotifications and BrandingOnboarding and SupportOverviewReceivablesReceivables AnalyticsReceivables ControlsSecurity and AccessSettings OverviewStress TestsTeams and OrganizationsTone Profiles and ExperimentsTransaction Categories and RulesTransactionsWeekly Finance RitualWorkflow ExecutionsWorkflow PausesWorkflowsWorkspace Inbox and Approvals
OverviewBuild and Review a ForecastBuild Your First WorkflowConfigure Assistant OperationsConfigure Notifications and BrandingConfigure Receivables ControlsConnect Transaction RecordsCreate and Manage CustomersCreate and Send InvoicesDeveloper API SetupFirst Cash ReviewInvoice Collection WorkflowMaintain Transaction RulesManage Security and BillingManage Team AccessManage the Invoice LifecycleMCP WorkflowsMonitor and Recover WorkflowsOrganize and Share DocumentsProcess Inbox ItemsReconcile and Categorize TransactionsReview a Customer Finance RecordRun a Finance Operating ReviewRun a Receivables Tone ExperimentRun a Runway Stress TestRun Your First Command Center ReviewSet Up a WorkspaceTroubleshoot Account AccessWebhook DeliveryWeekly CFO Review
OverviewIntegrationsMCPSDKsWebhooks
OverviewAuthenticationBank Accounts APICustomers APIErrorsForecasts and Stress Tests APIInvoice Payments APIInvoices APIPaginationRate LimitsRemote Tracker API StatusTracker Categories APITracker Entries and Timers APITracker Projects APITransactions APIWebhooks API StatusWorkflows API Status
Overview
Overview