Invoice Ninja

Open-source online invoicing app for freelancers & businesses

Go to site
Explore
/
Apps
/
Invoice Ninja

Invoice Ninja API Integrations

Build and run workflows using the Invoice Ninja API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Invoice Ninja API, you can build applications that can:

  • Create and manage invoices
  • Accept payments
  • Generate reports
  • Manage clients
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    invoice_ninja: {
      type: "app",
      app: "invoice_ninja",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.invoice_ninja.$auth.domain}/api/v1/clients`,
      headers: {
        "X-Ninja-Token": `${this.invoice_ninja.$auth.api_token}`,
      },
    })
  },
})

Authentication

Invoice Ninja uses API keys for authentication. When you connect your Invoice Ninja account, Pipedream securely stores the keys so you can easily authenticate to Invoice Ninja APIs in both code and no-code steps.

For hosted accounts, find your API token here.
For hosted accounts, use https://app.invoiceninja.com for your domain.