Skip to main content
You’ll find that everything — from setting up and creating pricing plans to reviewing invoices, monitoring customer usage, and managing data metering — is straightforward and intuitive. If you have any questions, or would like to inquire about additional features, please reach out to us. We’d love to hear from you: help@withvayu.com

Get Started

Getting started with Vayu could not be simpler. Check out the steps you’ll need to take:
1

Create a Pricing Plan

You can create pricing plans for specific customers or subsidiaries as well as create generic pricing plans to use as templates that can be customized as necessary.Any plan can combine whichever types of pricing you need, whether it’s usage-based, commitment fees, tiered pricing, etc. You can also choose the currency you need for each plan. Furthermore, you get to define the start date, duration, and the frequency at which invoices are created and at what intervals.
2

Explore Invoices

You’ll have real-time insight into your customers’ consumption at any given time, as well as what that means for their billing. Invoices are generated automatically and accurately according to your specifications. Once they’re ready, you can review, modify if desired, and send.
3

Review Customers

You can add customers directly from data in a CSV file, from syncing via a Salesforce or Hubspot integration, or manually using the quick and simple process in the Vayu platform. You can establish subsidiaries and related entities with ease.Once a customer is set up, you can view their current billing and usage status, balance overview, issued and overdue invoices, and more at any time.
4

Data Metering

The Vayu platform gives you visibility into your events and data metering. You’ll be able to view all the events that have been digested and counted by the platform, download consumption reports, and define products to meter.

API Quickstart

If you’re integrating programmatically, here’s the fastest path to your first working API call:
1

Get your credentials

Log into Vayu → Integrations → click Connect on the Vayu card. Copy your Client ID and API Token. See Connecting to Vayu for details.
2

Install the SDK

npm install vayu-ts
3

Send your first event

import { VayuClient } from 'vayu-ts';

// Pass your API Token — the SDK handles login/token refresh automatically
const vayu = new VayuClient({ apiToken: process.env.VAYU_API_TOKEN });

const result = await vayu.events.ingest([{
  name: 'api_call',
  ref: 'my-unique-ref-001',
  customerAlias: 'your-customer-id',
  timestamp: new Date().toISOString(),
  data: { tokens: 1500 }
}]);

console.log('Valid events:', result.validEvents.length);
4

Verify with dry-run

Not sure if events will match your customers and meters? Use the dry-run endpoint to test without storing data.