EIGENN.
docsguidesapichangelogpricingsign in
EIGENN.

SDKs

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

Eigenn's SDKs are generated from the current public OpenAPI document. They provide 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

The repository identifies the current contract and SDK version as 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 test data belong to the intended environment before sending a write.

Generated Resource Groups

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

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 relying on a generated class name.

Pagination and Errors

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

  • results are returned 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 while preserving the same filters and sort.

Generated clients surface non-2xx responses according to the language generator. Preserve the response status, Retry-After header, rate-limit headers, and request ID when 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 expose that header as an operation parameter.

Reuse a key only for the same logical write. A successful response can be replayed for that identity, method, path, query, and key. Changing the payload while reusing a 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. Review the public API changelog before upgrading.
  3. Regenerate or upgrade when the OpenAPI contract changes.
  4. Run contract tests against sandbox.
  5. Confirm required scopes for every operation 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

Understand Eigenn's provider callbacks and app-specific automation deliveries without assuming a universal webhook contract.

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 LimitsTransactions APIWebhooks API StatusWorkflows API Status
Overview
Overview