GST Verification Request
BusinessHow to call GST Verification — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/gst/verify
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 — format: [0-9]{2}[A-Z]{5}[0-9]{4}[A-Z][0-9A-Z][Z][0-9A-Z] (e.g. 10ABCDE1234F1Z5) |
Request Body
{
"gst_number": "10ABCDE1234F1Z5"
}
cURL
curl -X POST https://app.way2api.com/api/v1/gst/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"gst_number":"10ABCDE1234F1Z5"}'
🚀 Send Request