GST Filing Frequency Request
BusinessHow to call GST Filing Frequency — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/gst/filing-frequency
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| gst_number | string | Required | 15-character GSTIN, e.g. 03DOXPM4071K1ZE. Case-insensitive. |
| financial_year | string | Required | Indian financial year (April to March), 2017-18 onwards. Accepts 2023-24, 2023-2024 or 202324. |
Request Body
{
"gst_number": "03DOXPM4071K1ZE",
"financial_year": "2023-24"
}
cURL
curl -X POST https://app.way2api.com/api/v1/gst/filing-frequency \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"gst_number":"03DOXPM4071K1ZE","financial_year":"2023-24"}'
🚀 Send Request