Skip to main content
POST
/
v1
/
documents
/
extraction
/
gstin-certificate
Ind Gstin Certificate Ocr
curl --request POST \
  --url https://production.deepvue.tech/v1/documents/extraction/gstin-certificate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "document1": "<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"
  }
}

Authorizations

Authorization
string
header
required

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

x-api-key
string
header
required

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

Body

application/json
document1
string
required

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

Response

Successful Response

data
GSTIN_DOCUMENT_OCR · object
required
transaction_id
string
required
message
string
default:Document processed successfuly
code
string
default:200