🌮Taxo
  • Pricing
  • Contact
Sign InSign Up
🌮Taxo

Automated accounting on WhatsApp for freelancers. Taxo by Syntrixai LLC

© Copyright 2025 Taxo. All Rights Reserved.

About
  • About Us
  • Blog
  • Contact
Product
  • Documentation
  • Changelog
  • For Accountants
Legal
  • Terms of Service
  • Privacy Policy
  • Cookie Policy
  • Getting Started with Taxo
    • Installing the Taxo SDK
  • Authentication
    • Authentication Configuration

Installing the Taxo SDK

Learn how to install Taxo’s JavaScript SDK so you can embed your AI accountant into any web project.

To get started with Taxo in your web app, you’ll first need to install our JavaScript SDK. We recommend using pnpm—but feel free to use npm or yarn if you prefer.

  1. Install pnpm (if you don’t have it yet):

    npm install -g pnpm
    
  2. Add the Taxo SDK to your project:

    pnpm add @taxo/sdk
    

That command pulls in the Taxo client and all its dependencies. Once it’s finished, you’re ready to import and initialize Taxo in your code:

import Taxo from '@taxo/sdk';

const taxo = new Taxo({
  apiKey: process.env.TAXO_API_KEY,
});

Now you can call Taxo directly from your frontend to create invoices, log receipts, fetch tax tips, and more—right from your app.