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 authentication (JWT) |
| Content-Type | Yes | Must be application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| processor_id | string | Yes | Unique identifier of the processor to fetch. |
{
"processor_id": "studio_processor_ZsyAumAbqPrniLzjjzUP"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains processor details and metadata |
| └─ data | object | Processor configuration details |
| ├─ processor_id | string | Unique identifier of the processor |
| ├─ processor_name | string | Name of the processor |
| ├─ file_id | string | Associated file identifier |
| ├─ filename | string | Name of the associated file |
| ├─ processor_type | string | Type of processor (e.g., splitter) |
| ├─ categories | array | List of categories processed (type, description) |
| ├─ context | string | Context or notes for the processor |
| ├─ folder_id | string | Folder identifier (nullable) |
| ├─ created_at | string | ISO timestamp of processor creation |
| status_code | integer | HTTP status code (e.g., 200 for success) |
| success | boolean | Indicates if the request was successful |
| message | string | Human-readable status message |
| message_code | string | Machine-readable status code |
{
"data": {
"data": {
"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",
"categories": [
{
"type": "passport",
"description": ""
}
],
"context": "Updated context for processing",
"folder_id": null,
"created_at": "2025-12-18T07:31:16.906000"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
}{
"data": null,
"status_code": 404,
"success": false,
"message": "Processor not found",
"message_code": "processor_not_found"
}curl --location --request GET 'https://kyc-api.surepass.app/api/v1/sureparser/get-processor?processor_id="processor_id"' \
--header 'Authorization: Bearer <token>'{
"data": {
"processor_id": "processor_configABCDEFGHIJKLMNOPQ",
"processor_name": "Invoice Processor",
"file_id": "fileABCDEFGHIJKLMNOPQRSTU",
"filename": "sample.pdf",
"processor_type": "splitter",
"categories": [
{
"type": "invoice",
"description": "Invoice documents with billing details"
}
],
"context": "Process financial documents",
"folder_id": null,
"created_at": "2024-12-13T12:00:00.000000"
},
"status_code": 200,
"message": "Success",
"success": true
}