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 JWT token for authentication. Format: Bearer <your_jwt_token> |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | Integer | No | Page number for pagination. Valid range: 1-100. Default: 1 |
| page_size | Integer | No | Number of processors to return per page. Valid range: 1-50. Default: 30 |
| folder_id | String | No | Filter processors by specific folder. Format: studio_folder_<random_string>. When provided, only processors within the specified folder are returned |
| Parameter | Type | Description |
|---|---|---|
| success | Boolean | Indicates whether the API request was successful (true) or failed (false) |
| status_code | Integer | HTTP status code of the response (200 for success) |
| message | String | Human-readable message describing the result of the operation |
| message_code | String | Machine-readable code for the operation result (e.g., "success") |
| data | Object | Container object holding the response payload |
| data.processors | Array | List of processor objects matching the query criteria |
| data.processors[].processor_id | String | Unique identifier for the processor. Format: studio_processor_<random_string> |
| data.processors[].processor_name | String | Human-readable name assigned to the processor |
| data.processors[].file_id | String | Unique identifier of the file associated with this processor. Format: studio_file_<random_string> |
| data.processors[].filename | String | Original filename of the document associated with the processor |
| data.processors[].processor_type | String | Type of processor (e.g., "splitter" for document splitting operations) |
| data.processors[].folder_id | String/Null | Folder identifier if the processor is organized within a folder, null if not assigned to any folder |
| data.processors[].created_at | String | ISO 8601 timestamp indicating when the processor was created |
| data.pagination | Object | Pagination metadata for navigating through result sets |
| data.pagination.page | Integer | Current page number being returned |
| data.pagination.records | Integer | Number of processor records in the current page |
| data.pagination.has_next | Boolean | Indicates whether additional pages of results are available (true) or this is the last page (false) |
{
"data": {
"processors": [
{
"processor_id": "studio_processor_ZsyAumAbqPrniLzjjzUP",
"processor_name": "updateed testing",
"file_id": "studio_file_lyoWkhcQyExjuhhzcqof",
"filename": "Pan_and_Aadhar_in_Same_PDF.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2025-12-18T07:31:16.906000"
},
{
"processor_id": "studio_processor_blypAacKhRnHxPmZuOXr",
"processor_name": "rahulk",
"file_id": "studio_file_lyoWkhcQyExjuhhzcqof",
"filename": "Pan_and_Aadhar_in_Same_PDF.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2025-12-17T11:12:25.360000"
},
{
"processor_id": "studio_processor_xqpbhbzjOoyzpzJYjidu",
"processor_name": "Rahul",
"file_id": "studio_file_lyoWkhcQyExjuhhzcqof",
"filename": "Pan_and_Aadhar_in_Same_PDF.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2025-12-17T11:12:01.245000"
},
{
"processor_id": "studio_processor_SmAhoRCmowmmHDrrLcGT",
"processor_name": "samples",
"file_id": "studio_file_lyoWkhcQyExjuhhzcqof",
"filename": "Pan_and_Aadhar_in_Same_PDF.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2025-12-17T11:11:19.078000"
},
{
"processor_id": "studio_processor_AtIwsWxeOdtEqnUdMmgZ",
"processor_name": "sample",
"file_id": "studio_file_lyoWkhcQyExjuhhzcqof",
"filename": "Pan_and_Aadhar_in_Same_PDF.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2025-12-17T11:11:08.747000"
}
],
"pagination": {
"page": 1,
"records": 5,
"has_next": true
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"success": false,
"status_code": 401,
"message": "Unauthorized access. Invalid or expired token.",
"message_code": "unauthorized"
}has_next pagination flag to implement infinite scroll patterns for seamless browsing experiences.curl --location --request GET 'https://kyc-api.surepass.app/api/v1/sureparser/list-processors?page=1&folder_id="folder_id"&page_size=5' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"processor_id": "processor_configABCDEFGHIJKLMNOPQ",
"processor_name": "Invoice Processor",
"file_id": "fileABCDEFGHIJKLMNOPQRSTU",
"filename": "sample.pdf",
"processor_type": "splitter",
"folder_id": null,
"created_at": "2024-12-13T12:00:00.000000"
}
],
"status_code": 200,
"message": "Success",
"success": true
}