VOOZH about

URL: https://apify.com/mikolabs/gstin

โ‡ฑ GSTIN Scraper / Crawler ยท Apify


Pricing

from $5.00 / 1,000 gst taxpayer verifications

Go to Apify Store

GSTIN Scraper / Crawler

Verify Indian GST numbers and retrieve comprehensive taxpayer information from the official GST portal. Retrieves GSTIN overview, business details, goods & services, HSN, and filing details.

Pricing

from $5.00 / 1,000 gst taxpayer verifications

Rating

0.0

(0)

Developer

๐Ÿ‘ mikolabs

mikolabs

Maintained by Community

Actor stats

0

Bookmarked

52

Total users

10

Monthly active users

7 days ago

Last modified

Share

GST Verification API - India GST Portal

๐Ÿ‘ Apify
๐Ÿ‘ Python

An automated Apify actor that verifies Indian GST (Goods and Services Tax) numbers and retrieves comprehensive taxpayer information from the official GST portal. This actor features automatic captcha solving, intelligent retry mechanisms, and structured data output - making GST verification seamless and reliable.

๐Ÿš€ Key Features

  • โœ… Automatic Captcha Solving - Uses AI-powered Gradio API to solve captchas automatically
  • โœ… Intelligent Retry Logic - Automatically retries failed captcha solving and data retrieval
  • โœ… Data Validation - Retries verification if data is incomplete (all N/A values)
  • โœ… Structured Output - Clean, organized JSON output with taxpayer details, address, and additional info
  • โœ… Zero Manual Intervention - Only requires GSTIN - no manual captcha solving needed
  • โœ… Comprehensive Data - Retrieves legal name, trade name, registration date, status, address, jurisdiction, and more
  • โœ… Error Handling - Robust error handling with detailed error messages
  • โœ… Session Management - Automatic session handling with the GST portal

๐Ÿ“‹ Input

The actor requires only the GSTIN number. All other parameters are optional:

{
"GSTIN":"07AAECD1686J1ZG",
"captchaRetryAttempts":3,
"maxRetryAttempts":3
}

Input Parameters

ParameterTypeRequiredDefaultDescription
GSTINstringโœ… Yes-The GST Identification Number to verify (15 characters). Format: 07AAECD1686J1ZG
captchaRetryAttemptsintegerโŒ No3Number of times to retry captcha solving if it fails (range: 1-5)
maxRetryAttemptsintegerโŒ No3Maximum number of times to retry GST verification if data is all N/A (range: 1-10)

GSTIN Format

  • Length: 15 characters
  • Format: [State Code (2 digits)][PAN (10 chars)][Entity Number][Z][Check Digit]
  • Example: 07AAECD1686J1ZG
    • 27 = State Code (Maharashtra)
    • CEGPN9391P = PAN Number
    • 1 = Entity Number
    • Z = Fixed character
    • F = Check Digit

๐Ÿ“ค Output

The actor outputs structured GST verification data in JSON format.

Success Response

{
"gstin":"07AAECD1686J1ZG",
"status":"success",
"message":"GST verification completed successfully",
"verificationDate":"16/06/2024",
"verificationAttempts":1,
"taxpayerDetails":{
"legalName":"NILESH LAXMANRAO NIMBALKAR",
"tradeName":"SHRI SWAMI SAMARTH CONTRACT WORKS",
"registrationDate":"16/06/2024",
"status":"Active",
"businessType":"Regular",
"centerJurisdiction":"State - CBIC,Zone - NAGPUR,Commissionerate - NAGPUR II,Division - DIVISION CITY,Range - RANGE -I (Jurisdictional Office)",
"stateJurisdiction":"State - Maharashtra,Zone - Nagpur,Division - NAGPUR_EAST,Charge - AJNI_701"
},
"address":{
"fullAddress":"PLOT NO 74, ZINGABAI TAKDI, New Mankapur Road, SAI NAGAR, Manak Pur, Nagpur, Nagpur, Maharashtra, 440030",
"principalPlace":"PLOT NO 74",
"buildingName":"PLOT NO 74",
"street":"ZINGABAI TAKDI, New Mankapur Road",
"location":"ZINGABAI TAKDI",
"district":"Nagpur",
"state":"Maharashtra",
"pincode":"440030"
},
"additionalInfo":{
"centerJurisdiction":"State - CBIC,Zone - NAGPUR,Commissionerate - NAGPUR II,Division - DIVISION CITY,Range - RANGE -I (Jurisdictional Office)",
"stateJurisdiction":"State - Maharashtra,Zone - Nagpur,Division - NAGPUR_EAST,Charge - AJNI_701",
"constitutionOfBusiness":"Proprietorship",
"natureOfBusiness":["Works Contract","Others"],
"aadhaarVerified":"Yes",
"aadhaarVerificationDate":"20/01/2025",
"eKYCVerified":"Not Applicable",
"eInvoiceStatus":"No",
"cancellationDate":"N/A"
},
"rawData":{
// Complete raw response from GST portal
}
}

Captcha Required Response

If automatic captcha solving fails after all retry attempts:

{
"gstin":"07AAECD1686J1ZG",
"captchaImage":"data:image/png;base64,...",
"status":"captcha_required",
"message":"Automatic captcha solving failed after 3 attempts. Last error: ...",
"error":"Error details",
"attempts":3,
"verificationAttempts":3
}

Error Response

{
"gstin":"07AAECD1686J1ZG",
"status":"error",
"error":"Error message",
"message":"GST verification failed: Error message",
"verificationAttempts":3
}

๐Ÿ”„ How It Works

  1. Session Initialization - Creates a session with the official GST portal
  2. Captcha Fetching - Retrieves a captcha image from the GST portal
  3. Automatic Captcha Solving - Uses AI-powered Gradio API to solve captcha automatically
  4. GST Verification - Submits GSTIN and solved captcha to the GST portal
  5. Data Validation - Checks if retrieved data is valid (not all N/A)
  6. Retry Logic - If data is incomplete, automatically retries with a new captcha
  7. Structured Output - Formats and returns comprehensive GST details

Retry Mechanisms

  • Captcha Retry: If captcha solving fails, retries up to captchaRetryAttempts times (default: 3)
  • Data Validation Retry: If retrieved data is all N/A, retries the entire verification process up to maxRetryAttempts times (default: 3)
  • Automatic Fresh Captcha: Each retry fetches a new captcha for better success rate

๐Ÿ’ป Usage

Using Apify Console

  1. Go to Apify Console
  2. Search for "GST Verification API - India GST Portal"
  3. Click "Run" on the actor
  4. Enter your GSTIN in the input form
  5. (Optional) Adjust retry attempts if needed
  6. Click "Start" to run the actor
  7. View results in the dataset tab

Using Apify API (Python)

from apify_client import ApifyClient
# Initialize the ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
# Prepare the actor input
run_input ={
"GSTIN":"07AAECD1686J1ZG",
"captchaRetryAttempts":3,# Optional
"maxRetryAttempts":3# Optional
}
# Run the actor
run = client.actor("YOUR_USERNAME/gst-verification-india").call(run_input=run_input)
# Fetch results from the default dataset
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Using Apify API (JavaScript/Node.js)

const{ ApifyClient }=require('apify-client');
// Initialize the ApifyClient
const client =newApifyClient({
token:'YOUR_API_TOKEN',
});
// Prepare the actor input
const runInput ={
GSTIN:"07AAECD1686J1ZG",
captchaRetryAttempts:3,// Optional
maxRetryAttempts:3// Optional
};
// Run the actor
const run =await client.actor("YOUR_USERNAME/gst-verification-india").call(runInput);
// Fetch results from the default dataset
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Using cURL

curl-X POST \
https://api.apify.com/v2/acts/YOUR_USERNAME~gst-verification-india/runs \
-H'Authorization: Bearer YOUR_API_TOKEN'\
-H'Content-Type: application/json'\
-d'{
"GSTIN": "07AAECD1686J1ZG",
"captchaRetryAttempts": 3,
"maxRetryAttempts": 3
}'

๐Ÿ“Š Output Schema

The actor outputs data following a structured schema defined in .actor/dataset_schema.json. The output includes:

  • Basic Info: GSTIN, status, message, verification date
  • Taxpayer Details: Legal name, trade name, registration date, status, business type, jurisdiction
  • Address: Full address with parsed components (building, street, location, district, state, pincode)
  • Additional Info: Constitution, nature of business, verification statuses, eInvoice status
  • Raw Data: Complete original response from GST portal for reference

โš ๏ธ Limitations

  • Rate Limiting: The GST portal may apply rate limiting based on their policies
  • Captcha Success Rate: Automatic captcha solving success rate depends on image complexity
  • Internet Connection: Requires a valid internet connection to access the GST portal
  • GST Portal Availability: Depends on the GST portal being accessible and operational

๐Ÿ”’ Privacy & Compliance

  • This actor only accesses publicly available GST verification data
  • No personal sensitive data is stored beyond what's necessary for verification
  • Users are responsible for ensuring compliance with GST portal terms of service
  • This actor is for legitimate verification purposes only

๐Ÿ“ Changelog

Version 1.0

  • Initial release
  • Automatic captcha solving using Gradio API
  • Intelligent retry logic for captcha and data retrieval
  • Structured output format
  • Data validation and retry mechanism

๐Ÿค Support

For issues, questions, or contributions:

  • Open an issue on the repository
  • Contact through Apify Console
  • Check the actor's documentation in Apify Store

๐Ÿ“„ License

This project is provided as-is for educational and legitimate business purposes. Please ensure compliance with the GST portal's terms of service and all applicable laws and regulations.

โš–๏ธ Disclaimer

This actor is for legitimate GST verification purposes only. Users are responsible for:

  • Ensuring compliance with all applicable laws and regulations
  • Respecting the GST portal's terms of service
  • Using the actor responsibly and ethically
  • Verifying the accuracy of retrieved data independently

The developers and maintainers of this actor are not responsible for any misuse or non-compliance with applicable laws and regulations.

You might also like

GSTIN Scraper | GST Number Verification & Business Details API

hulkscrape/gstin-scraper

GSTIN Scraper, GST Number Verification, GST Lookup API, GST Search Tool, GST Validation API India, GST Business Details API, GSTIN Checker, GST Status Check, GST Data Scraper, GST Registration Lookup

Gstin-scraper

mikolabs/gstin-scraper

Verify Indian GST numbers and retrieve comprehensive taxpayer information from the official GST portal. Retrieves GSTIN overview, business details, goods & services, HSN, and filing details.

India Government Data API

lentic_clockss/india-data-search

Search India business, procurement, health, legal, and public-data sources in one run. Get normalized results fast for research and workflow automation.

GST Verification India - GSTIN Lookup & Business Details

thirdwatch/gst-verification-scraper

Verify Indian GST numbers (GSTIN) and get business details. Returns legal name, trade name, registration status, taxpayer type, constitution, state jurisdiction, and more. Bulk GSTIN verification supported.

GST No. Verifer

mikolabs/gst

An automated Apify actor that verifies Indian GST (Goods and Services Tax) numbers and retrieves comprehensive taxpayer information from the official GST portal.

๐Ÿ‡ฎ๐Ÿ‡ณ GSTHawk โ€” Bulk GSTIN Verification & Business Intelligence

inexhaustible_glass/gsthawk

Verify thousands of Indian GST numbers in one run. Extract legal name, trade name, PAN, status, registration date, business category. Auto-compliance scoring (A/B/C/D). For CA firms, B2B platforms, sales teams, invoicing tools. Requires free Appyflow API key.

1

Trip.com Hotel Data Scraper with Advanced Filters

hotels-scrapers/trip-hotel-scraper

Powerful Trip.com hotel/accomendation data scraper & API. Collect prices (original, current, total), ratings, reviews, room types, amenities, images, promotions. Apply advanced filters, monitor markets, build dashboards, or call via REST & schedule. Exports JSON or CSV fast.

๐Ÿ‘ User avatar

Hotels Scraper

96

4.7

GSTIN Scraper

codingfrontend/gstin-scraper

A robust, high-performance utility designed for developer automation, data integration, and AI training. Features built-in captcha bypass, headful/headless browser execution, and proxy support to scrape GSTIN data seamlessly, reliably, and at scale.

๐Ÿ‘ User avatar

codingfrontend

99

2.4

GSTIN Scraper

w3crawler/gstin-scraper

A robust, high-performance utility designed for developer automation, data integration, and AI training. Features built-in captcha bypass, headful/headless browser execution, and proxy support to scrape GSTIN data seamlessly, reliably, and at scale.

w3crawler

2

Hsn Code Finder India

akash9078/hsn-code-finder-india

Search HSN (Harmonized System of Nomenclature) codes for Indian products using AI-powered semantic search. Simply describe your product and get accurate HSN codes.

๐Ÿ‘ User avatar

Akash Kumar Naik

27