Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication (JWT format) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
state | String Enum | Yes | Two-letter state code representing an Indian state or union territory |
Code | State/UT Name |
---|---|
AN | Andaman and Nicobar Islands |
AP | Andhra Pradesh |
AR | Arunachal Pradesh |
AS | Assam |
BR | Bihar |
CH | Chandigarh |
CT | Chhattisgarh |
DL | Delhi |
GA | Goa |
GJ | Gujarat |
HR | Haryana |
HP | Himachal Pradesh |
JH | Jharkhand |
JK | Jammu and Kashmir |
KA | Karnataka |
KL | Kerala |
MH | Maharashtra |
ML | Meghalaya |
MN | Manipur |
MP | Madhya Pradesh |
MZ | Mizoram |
OR | Odisha |
PB | Punjab |
PY | Puducherry |
RJ | Rajasthan |
SK | Sikkim |
TG | Telangana |
TN | Tamil Nadu |
TR | Tripura |
UP | Uttar Pradesh |
UT | Uttarakhand |
WB | West Bengal |
GET /api/v1/stamper-v2/list-articles?state=MH
Parameter | Type | Description |
---|---|---|
data | Array | List of available stamp articles for the requested state |
data[].article_id | Integer | Unique identifier for the stamp article |
data[].article_code | String | Official code/number of the stamp article |
data[].article_name | String | Descriptive name of the stamp article |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": [
{
"article_id": 22092,
"article_code": "Article 20",
"article_name": "Conveyance"
},
{
"article_id": 22086,
"article_code": "Article 30",
"article_name": "Indeminity Bond"
},
{
"article_id": 22088,
"article_code": "Article 35(b)",
"article_name": "without possession"
},
{
"article_id": 22085,
"article_code": "Article 4",
"article_name": "Affidavit"
},
{
"article_id": 22087,
"article_code": "Article 42",
"article_name": "Power of Attorney"
},
{
"article_id": 22093,
"article_code": "Article 49",
"article_name": "Settlements"
},
{
"article_id": 22270,
"article_code": "Article 56(i)",
"article_name": "Bank Guarantee - If related to paper bank guarantee"
},
{
"article_id": 22271,
"article_code": "Article 56(ii)",
"article_name": "Bank Guarantee - If relating to e-bank guarantee"
},
{
"article_id": 22090,
"article_code": "Article 6(A)(iv)",
"article_name": "Agreement"
},
{
"article_id": 3969,
"article_code": "Article 6(c)",
"article_name": "Agreement In any other case"
},
{
"article_id": 22362,
"article_code": "Article 6(C)",
"article_name": "Article 6(C) (old article)"
},
{
"article_id": 22091,
"article_code": "Article 7",
"article_name": "Agreement"
},
{
"article_id": 3970,
"article_code": "Article 7(ii)",
"article_name": "Relating to pawn or pledge or 0.5% (subject to a hypothecation of movables)"
},
{
"article_id": 22351,
"article_code": "article AP1",
"article_name": "article AP1 (old article)"
}
],
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid state code provided",
"message_code": "invalid_state_code"
}
curl --location --request GET 'https://kyc-api.surepass.app/api/v1/stamper-v2/list-articles?state=AP'
{
"data": [
{
"article_id": 22092,
"article_code": "Article 20",
"article_name": "Conveyance"
},
{
"article_id": 22086,
"article_code": "Article 30",
"article_name": "Indeminity Bond"
},
{
"article_id": 22088,
"article_code": "Article 35(b)",
"article_name": "without possession"
},
{
"article_id": 22085,
"article_code": "Article 4",
"article_name": "Affidavit"
},
{
"article_id": 22087,
"article_code": "Article 42",
"article_name": "Power of Attorney"
},
{
"article_id": 22093,
"article_code": "Article 49",
"article_name": "Settlements"
},
{
"article_id": 22270,
"article_code": "Article 56(i)",
"article_name": "Bank Guarantee - If related to paper bank guarantee"
},
{
"article_id": 22271,
"article_code": "Article 56(ii)",
"article_name": "Bank Guarantee - If relating to e-bank guarantee"
},
{
"article_id": 22090,
"article_code": "Article 6(A)(iv)",
"article_name": "Agreement"
},
{
"article_id": 3969,
"article_code": "Article 6(c)",
"article_name": "Agreement In any other case"
},
{
"article_id": 22362,
"article_code": "Article 6(C)",
"article_name": "Article 6(C) (old article)"
},
{
"article_id": 22091,
"article_code": "Article 7",
"article_name": "Agreement"
},
{
"article_id": 3970,
"article_code": "Article 7(ii)",
"article_name": "Relating to pawn or pledge or 0.5% (subject to a hypothecation of movables)"
},
{
"article_id": 22351,
"article_code": "article AP1",
"article_name": "article AP1 (old article)"
}
],
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}