e-Way Bill API Pricing Plans

Transparent annual pricing for e-Way Bill API access. Starter to Enterprise. Volume-based pricing for >100K monthly EWB.

Get sandbox keys → View OpenAPI docs Talk to sales

What is the e-Way Bill API Pricing Plans?

WhiteBooks e-Way Bill API pricing follows annual tiers — Pricing follows a custom-quote model tailored to your call volume, ERP integrations, and SLA tier.

For high-volume logistics platforms (>100K EWB/month), volume-tier pricing is negotiated — typical INR 0.05-0.15 per EWB depending on commit volume. All tiers include sandbox, 6 SDKs, Postman collections, and standard support.

Quick spec

Code examples

curl Node.jsPythonJava
curl -X GET 'https://apisandbox.whitebooks.in/eway/api/v1/usage/current' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Content-Type: application/json'
Node.js
const res = await fetch('https://apisandbox.whitebooks.in/eway/api/v1/usage/current', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + accessToken,
    'Content-Type': 'application/json',
  },
});
const data = await res.json();
Python
import requests

resp = requests.get(
    'https://apisandbox.whitebooks.in/eway/api/v1/usage/current',
    headers={'Authorization': f'Bearer {access_token}'},
)
data = resp.json()
Java
HttpRequest req = HttpRequest.newBuilder()
    .uri(URI.create("https://apisandbox.whitebooks.in/eway/api/v1/usage/current"))
    .header("Authorization", "Bearer " + accessToken)
    .header("Content-Type", "application/json")
    .GET()
    .build();
HttpResponse<String> resp = HttpClient.newHttpClient()
    .send(req, BodyHandlers.ofString());

Integrate in 3 steps

  1. Sign up at accounts.whitebooks.in — sandbox credentials issued instantly, no sales gate.
  2. Make your first call against the sandbox base URL using the code example above. Validate against your local model.
  3. Move to production once your tests pass — switch host to https://api.whitebooks.in/eway. Same payload, same response shape.

Frequently asked questions

Is e-Way Bill pricing bundled with GST?

No — separate plans. Can purchase only EWB without GST API.

Per-EWB pricing available?

For >100K monthly EWB, yes — contact sales.

Are SDKs included?

Yes — all 6 SDKs free across tiers.

Enterprise tier extras?

99.99% SLA, dedicated account manager, custom rate limits, security review, MSA.

Explore the full e-Way Bill API

This is one endpoint inside the WhiteBooks e-Way Bill API suite. See the full documentation — every endpoint, every parameter, every error code.

Open the e-Way Bill API page →

Related e-Way Bill API endpoints

e-Way Bill Generation API → e-Way Bill Cancellation API → Part-B Update API → e-Way Bill Validity Extension API →