Feel free to reach techsupport@surepass.io for any technical support or guidance.
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token containing your JWT for API authentication |
Content-Type | Yes | application/json - Required for POST request body |
Parameter | Type | Required | Description |
---|---|---|---|
state | String | Yes | The state identifier in snake_case format (e.g., "puducherry", "tamil_nadu"). Use the state identifiers from the Get State List API |
{
"state": "puducherry"
}
Parameter | Type | Description |
---|---|---|
data | Object | Dictionary containing Estamp document types as keys and their corresponding state-specific codes as values |
status_code | Integer | HTTP status code indicating the result (200 for success) |
message_code | String | Internal status code for the operation ("success" for successful requests) |
message | String | Human-readable status message describing the result |
success | Boolean | Indicates whether the API call was successful (true/false) |
{
"data": {
"Acknowledgement [1]": "PY-RG-26",
"Administration-Bond [2]": "PY-RG-27",
"Adoption-Deed [3]": "PY-RG-1",
"Affidavit [4]": "PY-RG-28",
"Agreement or Memorandum of Agreement [5]": "PY-RG-29",
"Agreement relating to Deposit of Title Deeds, Pawn or Pledge [6]": "PY-RG-2",
"Appointment in Execution of a Power [7]": "PY-RG-30",
"Appraisement or Valuation [8]": "PY-RG-31",
"Apprenticeship deed [9]": "PY-RG-32",
"Articles of Association of a Company [10]": "PY-RG-33",
"Articles of Clerkship [11]": "PY-RG-34",
"Award [12]": "PY-RG-3",
"Bill of Exchange [13]": "PY-RG-35",
"Bill of Lading [14]": "PY-RG-36",
"Bond [15]": "PY-RG-37",
"Bottomry Bond [16]": "PY-RG-38",
"Cancellation [17]": "PY-RG-39",
"Certificate of Sale [18]": "PY-RG-4",
"Certificate or Other Document [19]": "PY-RG-5",
"Charter-Party [20]": "PY-RG-40",
"Composition-Deed [22]": "PY-RG-6",
"Conveyance [23]": "PY-RG-7",
"Conveyance in the Nature of Part Performance [23(A)]": "PY-RG-41",
"Copy or Extract [24]": "PY-RG-42",
"Counterpart or Duplicate [25]": "PY-RG-43",
"Customs Bond [26]": "PY-RG-44",
"Debenture [27]": "PY-RG-8",
"Delivery- Order in respect of Goods [28]": "PY-RG-45",
"Dissolution of Pawn or Pledge [46(B)]": "PY-RG-17",
"Divorce [29(i)]": "PY-RG-46",
"Dower [29(ii)]": "PY-RG-47",
"Duplicate [29(iii)]": "PY-RG-48",
"Entry as an advocate Vakil or Attorney on the roll of any High Court [30]": "PY-RG-49",
"Exchange of Property [31]": "PY-RG-9",
"Further Charge [32]": "PY-RG-50",
"Gift [33(i)]": "PY-RG-10",
"Hiring Agreement [33(ii)]": "PY-RG-11",
"Indemnity-Bond [34(i)]": "PY-RG-51",
"Inspectorship-Deed [34(ii)]": "PY-RG-52",
"Insurance [34(iii)]": "PY-RG-53",
"Lease-more than one year [35]": "PY-RG-12",
"Lease-not exceeding one year [35]": "PY-RG-54",
"Letter of Alloment of Shares [36]": "PY-RG-55",
"Letter of Credit [37(i)]": "PY-RG-56",
"Letter of Guarantee [37(ii)]": "PY-RG-57",
"Letter of Licence [38]": "PY-RG-58",
"Memorandum of Association of a Company [39]": "PY-RG-59",
"Mortgage Deed - when possession is not given or agreed to be given as aforesaid [40(b)]": "PY-RG-79",
"Mortgage of a Crop [41]": "PY-RG-14",
"Mortgage-Deed [40]": "PY-RG-13",
"Notarial Act [42]": "PY-RG-60",
"Note of Memorandum [43]": "PY-RG-61",
"Note of Protest by the Master of a Ship [44(i)]": "PY-RG-62",
"Order for the Payment of Money [44(ii)]": "PY-RG-63",
"Partition [45]": "PY-RG-15",
"Partnership [46(A)]": "PY-RG-16",
"Policy of Insurance [47]": "PY-RG-64",
"Power of Attorney [48]": "PY-RG-65",
"Promissory Note [49]": "PY-RG-66",
"Protest by the Master of a Ship [51]": "PY-RG-68",
"Protest of Bill or Note [50]": "PY-RG-67",
"Proxy [52]": "PY-RG-69",
"Receipt [53]": "PY-RG-70",
"Reconveyance of Mortgaged Property [54]": "PY-RG-71",
"Release [55]": "PY-RG-18",
"Respondentia Bond [56(i)]": "PY-RG-72",
"Revocation of Any Trust or Settlement [56(ii)]": "PY-RG-73",
"Security Bond or Mortgage Deed [57]": "PY-RG-74",
"Settlement [58]": "PY-RG-19",
"Share Warrants [59]": "PY-RG-75",
"Shipping Order [60]": "PY-RG-76",
"Surrender of Lease [61]": "PY-RG-77",
"Transfer [62]": "PY-RG-20",
"Transfer of Lease [63]": "PY-RG-21",
"Trust: Declaration of [64(i)(A)]": "PY-RG-22",
"Trust: Revocation of [64(i)(B)]": "PY-RG-23",
"Vakil [64(iii)]": "PY-RG-25",
"Valuation [64(ii)]": "PY-RG-24",
"Warrant for Goods [65]": "PY-RG-78"
},
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}
{
"status_code": 400,
"message_code": "invalid_state",
"message": "Invalid state parameter. Please provide a valid state identifier.",
"success": false,
"data": null
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/estamp/get-estamp-list' \
--header 'Content-Type: application/json' \
--data-raw '{
"state": "puducherry"
}'
{
"data": {
"Acknowledgement [1]": "PY-RG-26",
"Administration-Bond [2]": "PY-RG-27",
"Adoption-Deed [3]": "PY-RG-1",
"Affidavit [4]": "PY-RG-28",
"Agreement or Memorandum of Agreement [5]": "PY-RG-29",
"Agreement relating to Deposit of Title Deeds, Pawn or Pledge [6]": "PY-RG-2",
"Appointment in Execution of a Power [7]": "PY-RG-30",
"Appraisement or Valuation [8]": "PY-RG-31",
"Apprenticeship deed [9]": "PY-RG-32",
"Articles of Association of a Company [10]": "PY-RG-33",
"Articles of Clerkship [11]": "PY-RG-34",
"Award [12]": "PY-RG-3",
"Bill of Exchange [13]": "PY-RG-35",
"Bill of Lading [14]": "PY-RG-36",
"Bond [15]": "PY-RG-37",
"Bottomry Bond [16]": "PY-RG-38",
"Cancellation [17]": "PY-RG-39",
"Certificate of Sale [18]": "PY-RG-4",
"Certificate or Other Document [19]": "PY-RG-5",
"Charter-Party [20]": "PY-RG-40",
"Composition-Deed [22]": "PY-RG-6",
"Conveyance [23]": "PY-RG-7",
"Conveyance in the Nature of Part Performance [23(A)]": "PY-RG-41",
"Copy or Extract [24]": "PY-RG-42",
"Counterpart or Duplicate [25]": "PY-RG-43",
"Customs Bond [26]": "PY-RG-44",
"Debenture [27]": "PY-RG-8",
"Delivery- Order in respect of Goods [28]": "PY-RG-45",
"Dissolution of Pawn or Pledge [46(B)]": "PY-RG-17",
"Divorce [29(i)]": "PY-RG-46",
"Dower [29(ii)]": "PY-RG-47",
"Duplicate [29(iii)]": "PY-RG-48",
"Entry as an advocate Vakil or Attorney on the roll of any High Court [30]": "PY-RG-49",
"Exchange of Property [31]": "PY-RG-9",
"Further Charge [32]": "PY-RG-50",
"Gift [33(i)]": "PY-RG-10",
"Hiring Agreement [33(ii)]": "PY-RG-11",
"Indemnity-Bond [34(i)]": "PY-RG-51",
"Inspectorship-Deed [34(ii)]": "PY-RG-52",
"Insurance [34(iii)]": "PY-RG-53",
"Lease-more than one year [35]": "PY-RG-12",
"Lease-not exceeding one year [35]": "PY-RG-54",
"Letter of Alloment of Shares [36]": "PY-RG-55",
"Letter of Credit [37(i)]": "PY-RG-56",
"Letter of Guarantee [37(ii)]": "PY-RG-57",
"Letter of Licence [38]": "PY-RG-58",
"Memorandum of Association of a Company [39]": "PY-RG-59",
"Mortgage Deed - when possession is not given or agreed to be given as aforesaid [40(b)]": "PY-RG-79",
"Mortgage of a Crop [41]": "PY-RG-14",
"Mortgage-Deed [40]": "PY-RG-13",
"Notarial Act [42]": "PY-RG-60",
"Note of Memorandum [43]": "PY-RG-61",
"Note of Protest by the Master of a Ship [44(i)]": "PY-RG-62",
"Order for the Payment of Money [44(ii)]": "PY-RG-63",
"Partition [45]": "PY-RG-15",
"Partnership [46(A)]": "PY-RG-16",
"Policy of Insurance [47]": "PY-RG-64",
"Power of Attorney [48]": "PY-RG-65",
"Promissory Note [49]": "PY-RG-66",
"Protest by the Master of a Ship [51]": "PY-RG-68",
"Protest of Bill or Note [50]": "PY-RG-67",
"Proxy [52]": "PY-RG-69",
"Receipt [53]": "PY-RG-70",
"Reconveyance of Mortgaged Property [54]": "PY-RG-71",
"Release [55]": "PY-RG-18",
"Respondentia Bond [56(i)]": "PY-RG-72",
"Revocation of Any Trust or Settlement [56(ii)]": "PY-RG-73",
"Security Bond or Mortgage Deed [57]": "PY-RG-74",
"Settlement [58]": "PY-RG-19",
"Share Warrants [59]": "PY-RG-75",
"Shipping Order [60]": "PY-RG-76",
"Surrender of Lease [61]": "PY-RG-77",
"Transfer [62]": "PY-RG-20",
"Transfer of Lease [63]": "PY-RG-21",
"Trust: Declaration of [64(i)(A)]": "PY-RG-22",
"Trust: Revocation of [64(i)(B)]": "PY-RG-23",
"Vakil [64(iii)]": "PY-RG-25",
"Valuation [64(ii)]": "PY-RG-24",
"Warrant for Goods [65]": "PY-RG-78"
},
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}