Docsaar.com is in development mode. If you face issue in any of the features then please contact us at contact@docsaar.com immediately.

ChatGPT Resume parser


- Get token from your profile page.

- Create JSON like this:

To send input file and header to send your token

                                       # For sending file
                                        {
                                            'chatgpt_resume': open("INPUT_FILE_PATH", 'rb')
                                        }
                                        # Header to send token
                                        {
                                            'Authorization': 'YOUR_TOKEN'
                                        }
                                       #Make sure file path is correct
                                    

- Send this file and token to "https://www.docsaar.com/api/chatgpt_resume_parsing".

- Example python request

                                        import requests
                                        
                                        files = {'chatgpt_resume': open("YOUR_FILE_PATH", 'rb')}
                                        
                                        headers = {'Authorization': 'YOUR_TOKEN'}
                                        
                                        response = requests.request(
                                                method='POST',
                                                headers=headers,
                                                url= "https://www.docsaar.com/api/chatgpt_resume_parsing",
                                                files = files
                                            )
                                        
                                        print(response.text)
                                    

- You get output in JSON format like this:

                                        #For success:
                                        {
                                            "status" : "success",
                                            "output" : "GENERATED_OUTPUT"
                                        }
                                     
                                        #For failure:
                                        {
                                            "status" : "fail",
                                            "output" : "ERROR_DISCRIPTION"
                                        }
                                     

ChatGPT Invoice Parser


- Get token from your profile page.

- Create JSON like this:

To send input file and header to send your token

                                       # For sending file
                                        {
                                            'chatgpt_invoice_image_file': open("INPUT_FILE_PATH", 'rb')
                                        }
                                        # Header to send token
                                        {
                                            'Authorization': 'YOUR_TOKEN'
                                        }
                                       #Make sure file path is correct
                                    

- Send this file and token to "https://www.docsaar.com/api/chatgpt_invoice_parsing".

- Example python request

                                        import requests
                                        
                                        files = {'chatgpt_invoice_image_file': open("YOUR_FILE_PATH", 'rb')}
                                        
                                        headers = {'Authorization': 'YOUR_TOKEN'}
                                        
                                        response = requests.request(
                                                method='POST',
                                                headers=headers,
                                                url= "https://www.docsaar.com/api/chatgpt_invoice_parsing",
                                                files = files
                                            )
                                        
                                        print(response.text)
                                    

- You get output in JSON format like this:

                                        #For success:
                                        {
                                            "status" : "success",
                                            "output" : "GENERATED_OUTPUT"
                                        }
                                     
                                        #For failure:
                                        {
                                            "status" : "fail",
                                            "output" : "ERROR_DISCRIPTION"
                                        }