Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for API authentication. Format: Bearer {JWT_TOKEN} |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | integer | No | Page number for pagination. Default 1 |
| start_date | string | Yes | Start date for filtering orders. Format: YYYY-MM-DD |
| end_date | string | Yes | End date for filtering orders. Format: YYYY-MM-DD |
{
"page": 1,
"start_date": "2025-11-18",
"end_date": "2025-11-18"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object for response data |
| data.start_date | string | Start date of the query range |
| data.end_date | string | End date of the query range |
| data.stamps | array | Array of stamp order objects |
| data.stamps[].client_id | string | Unique identifier for the stamp order |
| data.stamps[].created_at | string | Timestamp when the order was created (ISO 8601 format) |
| data.stamps[].amount | number | Stamp duty amount |
| data.stamps[].consideration_amount | number | Consideration amount for the transaction |
| data.stamps[].first_party | string | Name of the first party in the transaction |
| data.stamps[].first_party_father_name | string | Father's name of the first party |
| data.stamps[].first_party_address | string | Address of the first party |
| data.stamps[].second_party | string | Name of the second party in the transaction |
| data.stamps[].article_id | string | Article ID as per stamp duty regulations |
| data.stamps[].state | string | State code where the stamp is applicable |
| data.stamps[].courier_address | string | Delivery address for the stamp papers |
| data.stamps[].quantity | integer | Quantity of stamp papers ordered |
| data.pagination | object | Pagination information |
| data.pagination.page | integer | Current page number |
| data.pagination.records | integer | Number of records in the current page |
| data.pagination.has_next | boolean | Indicates if more pages are available |
| status_code | integer | HTTP status code |
| success | boolean | Indicates if the request was successful |
| message | string | Response message |
| message_code | string | Machine-readable message code |
{
"data": {
"start_date": "2025-11-18",
"end_date": "2025-11-18",
"stamps": [
{
"client_id": "bulk_stamp_v2_ctfWfTZsjqRNKeBkkhWF",
"created_at": "2025-11-18T13:41:59.868000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
},
{
"client_id": "bulk_stamp_v2_vomMHvHnecrKlzTPRtyL",
"created_at": "2025-11-18T13:41:16.109000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
},
{
"client_id": "bulk_stamp_v2_fxmzmqznpBbzEhijlJpt",
"created_at": "2025-11-18T12:12:20.559000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
}
],
"pagination": {
"page": 1,
"records": 3,
"has_next": false
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 401,
"success": false,
"message": "Invalid or expired token",
"message_code": "unauthorized"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/stamper-v2/bulk-stamp-orders-list' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"page": 1,
"start_date": "2025-11-18",
"end_date": "2025-11-18"
}'{
"data": {
"start_date": "2025-11-18",
"end_date": "2025-11-18",
"stamps": [
{
"client_id": "bulk_stamp_v2_ctfWfTZsjqRNKeBkkhWF",
"created_at": "2025-11-18T13:41:59.868000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
},
{
"client_id": "bulk_stamp_v2_vomMHvHnecrKlzTPRtyL",
"created_at": "2025-11-18T13:41:16.109000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
},
{
"client_id": "bulk_stamp_v2_fxmzmqznpBbzEhijlJpt",
"created_at": "2025-11-18T12:12:20.559000",
"amount": 1,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"first_party_father_name": "Father Name",
"first_party_address": "Address",
"second_party": "Borrower",
"article_id": "2710",
"state": "DL",
"courier_address": "delhi",
"quantity": 2
}
],
"pagination": {
"page": 1,
"records": 3,
"has_next": false
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}