---
slug: javascript-sdk
title: JavaScript SDK
section: Reference
description: What OrcaSheets does and does not offer for JavaScript or TypeScript SDK access.
listed: false
---
# JavaScript SDK

**OrcaSheets does not provide a JavaScript or TypeScript SDK. This page explains what that means, and what to do instead.**

This is not a "coming soon" item. There is no supported npm package, TypeScript client, or official JavaScript bindings for OrcaSheets.

## What is NOT available

To be explicit, you cannot do any of the following via an official SDK:

- **Call product features as functions** from JavaScript or TypeScript (Pivot Table, filter, join, Chart, Dashboard).
- **Trigger OrcaSheets UI features** from Node.js and receive structured outputs.
- **Use an "orcasheets" npm package** to access product features.

OrcaSheets features are not exposed as a standard API surface.

## What you SHOULD do instead

### Option A: export results, ingest them downstream

This is the standard, supported approach for most teams:

1. **Produce** the result you need in OrcaSheets (filtered Sheet, Pivot Table, Chart, Dashboard).
2. **Export** the result: see [Exporting Data](/docs/exporting-data).
3. **Ingest** the exported file in your service or pipeline.

### Option B: Enterprise-only programmatic workflows via custom Recipes

If you are an Enterprise customer and you need a programmatic workflow, OrcaSheets can offer:

- **Custom Recipes**, built as part of a **custom development** engagement.
- This is the **only** supported way we offer programmatic access today.

If something of this sort has been built for you, refer to the **deployment-specific documentation** you received for implementation details.

## What about a REST API?

OrcaSheets does not expose individual features as a public REST API. See [REST API](/docs/rest-api) for the full explanation.

## Recommended approach

- **Start with exports**: [Exporting Data](/docs/exporting-data).
- **Keep integration logic in your own codebase**, so it stays portable and testable.

## Related pages

- [REST API](/docs/rest-api)
- [Python SDK](/docs/python-sdk)
- [Webhook Integration](/docs/webhook-integration)
- [Recipes](/docs/recipes)
