Robeeta Cloud Veri5 - Help Document

Robeeta Cloud Veri5 - Help Document

Verify GSTIN

Veri5 GST Verification API

This API will verify the legitimacy of a GSTIN (Goods and Services Tax Identification Number). You will need to pass the GST Number to verify the status of the GST license. On successful validation, the API will return complete business details including the name and address of the business.

POST https://api.veri5.cloud.robeeta.com/Veri5/VerifyGstDetails

Authorization: Api key

Header: Content-Type: application/json

Request Body

  • AccessKey: string - (required) The API key used for authorization.
  • GstNumber: string - (required) The GST number you want to verify.

Response Body

  • Response: string - A message indicating the outcome of the request.
  • GstNumber: string - The GST number provided for verification.
  • LegalName: string - The legal name of the business.
  • GstinValidityFrom: DateTime - The date from which the GSTIN is valid.
  • StateJurisdiction: string - The jurisdiction of the state.
  • ConstitutionType: string - The type of constitution of the business.
  • TaxpayerType: string - The type of taxpayer.
  • StateJurisdictionCode: string - The jurisdiction code of the state.
  • Activity: string[] - An array of activities associated with the business.
  • GstinStatus: string - The status of the GSTIN (e.g., active, inactive).
  • TradeName: string - The trade name of the business.
  • AddressPrimaryBuilding: string - Primary building of the business address.
  • AddressPrimaryStreet1: string - Primary street address.
  • AddressPrimaryLocation: string - Primary location.
  • AddressPrimaryNumber: string - Primary number of the address.
  • AddressPrimaryState: string - State of the primary address.
  • AddressPrimaryDistrict: string - District of the primary address.
  • AddressPrimaryFloor: string - Floor of the primary address.
  • AddressPrimaryLatt: string - Latitude of the primary address.
  • AddressPrimaryLong: string - Longitude of the primary address.
  • AddressPrimaryPincode: string - Pincode of the primary address.
  • AddressSecondaryBuilding: string - Secondary building of the business address.
  • AddressSecondaryStreet1: string - Secondary street address.
  • AddressSecondaryLocation: string - Secondary location.
  • AddressSecondaryNumber: string - Secondary number of the address.
  • AddressSecondaryState: string - State of the secondary address.
  • AddressSecondaryDistrict: string - District of the secondary address.
  • AddressSecondaryFloor: string - Floor of the secondary address.
  • AddressSecondaryLatt: string - Latitude of the secondary address.
  • AddressSecondaryLong: string - Longitude of the secondary address.
  • AddressSecondaryPincode: string - Pincode of the secondary address.
Sample Request:
curl -X POST \nhttps://api.veri5.cloud.robeeta.com/Veri5/VerifyGstDetails \\\n-H "Content-Type: application/json" \\\n-d '{\n  "AccessKey": "string",\n  "GstNumber": "string"\n}'
Response:
{
            "Response": "string",
            "GstNumber": "string",
            "LegalName": "string",
            "GstinValidityFrom": "2024-09-30T09:02:51.920Z",
            "StateJurisdiction": "string",
            "ConstitutionType": "string",
            "TaxpayerType": "string",
            "StateJurisdictionCode": "string",
            "Activity": [
              "string"
            ],
            "GstinStatus": "string",
            "TradeName": "string",
            "AddressPrimaryBuilding": "string",
            "AddressPrimaryStreet1": "string",
            "AddressPrimaryLocation": "string",
            "AddressPrimaryNumber": "string",
            "AddressPrimaryState": "string",
            "AddressPrimaryDistrict": "string",
            "AddressPrimaryFloor": "string",
            "AddressPrimaryLatt": "string",
            "AddressPrimaryLong": "string",
            "AddressPrimaryPincode": "string",
            "AddressSecondaryBuilding": "string",
            "AddressSecondaryStreet1": "string",
            "AddressSecondaryLocation": "string",
            "AddressSecondaryNumber": "string",
            "AddressSecondaryState": "string",
            "AddressSecondaryDistrict": "string",
            "AddressSecondaryFloor": "string",
            "AddressSecondaryLatt": "string",
            "AddressSecondaryLong": "string",
            "AddressSecondaryPincode": "string"
          }