IndiaGST Certificate

GST Certificate OCR — Extract GSTIN Details

Upload a GST certificate image and extract GSTIN, business name, address, registration date, and taxpayer type automatically.

curl -X POST "https://production.deepvue.tech/v1/documents/extraction/gstin-certificate" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "document1": "example_string"
}'
{
  "code": 200,
  "transaction_id": "string",
  "message": "Document processed successfuly",
  "data": {
    "address": "string",
    "constitution_of_business": "string",
    "date_of_liability": "string",
    "gstin": "string",
    "is_provisional": "string",
    "legal_name": "string",
    "pan_number": "string",
    "trade_name": "string",
    "type_of_registration": "string",
    "valid_from": "string",
    "valid_upto": "string"
  }
}
POST
/v1/documents/extraction/gstin-certificate
POST
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Content-Typestring
Required

The media type of the request body

Options: application/json
document1string
Required

The document that needs to be processed for GSTIN certificate extraction.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Body

application/json
document1string
Required

The document that needs to be processed for GSTIN certificate extraction.

Responses

codeinteger
transaction_idstring
messagestring
dataobject

Overview

The GST Certificate OCR API provides real-time extraction of details from GST Certificate images. The service utilizes OCR technology to scan and extract structured data from GST certificates, converting image-based documents into machine-readable information.

You can provide the certificate image in one of two formats: a base64-encoded document string or a publicly accessible URL pointing to the document.