Skip to content
APISeeker
GET/v1/gstin/{gstin}/filings

Filing status

Return recent GST return filing status for a GSTIN.

Part of GSTIN Verification API· Rate limits: Plan-based

Parameters

NameInTypeRequiredDescription
gstinpathstringYes15-character GSTIN
X-API-KeyheaderstringYesYour API Seeker key

Code examples

cURL
curl -s "https://gstchk.apiseeker.com/v1/gstin/29ABCDE1234F1Z5/filings" \
  -H "X-API-Key: YOUR_API_KEY"

Response

JSON
{
  "gstin": "29ABCDE1234F1Z5",
  "filings": [
    {
      "period": "2026-07",
      "type": "GSTR-3B",
      "status": "Filed"
    },
    {
      "period": "2026-06",
      "type": "GSTR-3B",
      "status": "Filed"
    }
  ]
}

Errors

  • 400Invalid GSTIN format
  • 401Missing or invalid API key
  • 404GSTIN not found

Try this endpoint

API Playground

GSTIN Verification API

Try it
GETgstchk.apiseeker.com
https://gstchk.apiseeker.com/v1/gstin/29ABCDE1234F1Z5/filings
Status: Latency:

Response headers

Send a request to see headers.

Response body

Response will appear here.

Generated snippets

cURL
curl -s "https://gstchk.apiseeker.com/v1/gstin/29ABCDE1234F1Z5/filings" \
  -H "X-API-Key: YOUR_API_KEY"