GST APIEnvironment:
Default OTP575757
API Reference
Overview
Public
Authentication
GSTR
GSTR1
GSTR1A
GSTR2A
GSTR2B
GSTR2X
GSTR3B
Get GSTR3B SummaryGET
Get GSTR1 auto calculated liability detailsGET
Save GSTR3B dataPUT
Offset Liability GSTR3B DataPUT
Save past liability breakup GSTR3B DataPUT
File GSTR3B dataPOST
File GSTR3B dataPOST
validate GSTR3B against auto calculated valuesPOST
Recompute System Calulated InterestPOST
Get system calculated interestGET
Get ITC Reversal BalanceGET
Get Opening Balance For Credit Reversal and Re-claimed DetailsGET
Get latest closing balanceGET
Get RCM opening balanceGET
Submit RCM opening balancePOST
GSTR4
GSTR4A
GSTR4Annual
GSTR5
GSTR6
GSTR6A
GSTR7
GSTR8
GSTR9
GSTR9A
GSTR9C
SPIKE
ALL
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIGSTR3BGet Opening Balance For Credit Reversal and Re-claimed Details

Get Opening Balance For Credit Reversal and Re-claimed Details

GEThttps://apisandbox.whitebooks.in/gstr3b/openingbal

Get declared and amended opening balance.

Parameters

query parameters
gstinstringrequired
GSTIN of the taxpayer
emailstringrequired
Email
header parameters
gst_usernamestringrequired
GST UserName
state_cdstringrequired
State Code
ip_addressstringrequired
IP Address
txnstringrequired
Transaction
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret

Response

Not Found. If requested entity is not found or if requested API is not found.
GET/gstr3b/openingbal
1const response = await fetch('https://apisandbox.whitebooks.in/gstr3b/openingbal?gstin=value&email=value', {
2 method: 'GET',
3 headers: {
4 gst_username: "value",
5 state_cd: "value",
6 ip_address: "value",
7 txn: "value",
8 client_id: "value",
9 client_secret: "value"
10},
11});
12
13const data = await response.json();
14console.log(data);
No example available.