API Documentation DH-Boss


Image to text converter online api - DHBOSS API

image to text converter online api If you want to capture the text written on the text image then you can do it with this "Imagetotext" API. If you have a hand written letter and want to get the word of the hand written letter in text without typing it. If you have then you can use this API, it converts the words written on the image into text format, you can also solve the captcha containing the image. online image to text converter to extract text from images. Integrate with our API to automate your Image to Text conversion workflows. Extract text from images, scanned documents, and low-resolution photos using our online image to text converter. It convert picture to text accurately. image captcha solver api php, image captcha solver api php, Best captcha solver, - docs.dhboss.com


GET/POST : imagetotext

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
image_url String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
status string 200
message string Image to Text Convert Successfully
response_in_base64 string QmFzZTY0IERlY29kZSBhbmQgRW5jb2RlDQpCYXNlNjQgRGVjb2RlIGFuZCBFbmNvZGUNCkJhc2U2NCBEZWNvZGUgYW5kIEVuY29kZQ0KQmFzZTY0IERlY29kZSBhbmQgRW5jb2RlDQpCYXNlNjQgRGVjb2RlIGFuZCBFbmNvZGUNCkJhc2U2NCBEZWNvZGUgYW5kIEVuY29kZQ0K






Call API URL
https://api.dhboss.com/apicall/imagetotext/
API Call Request Parameters
image_url=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/imagetotext/',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => 'apikeyfill=api&image_url=https://club.s3.ap-south-1.amazonaws.com/capimg.png',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
	"status": "200",
	"message": "Image to Text Convert Successfully",
	"response_in_base64": "QmFzZTY0IERlY29kZSBhbmQgRW5jb2RlDQpCYXNlNjQgRGVjb2RlIGFuZCBFbmNvZGUNCkJhc2U2NCBEZWNvZGUgYW5kIEVuY29kZQ0KQmFzZTY0IERlY29kZSBhbmQgRW5jb2RlDQpCYXNlNjQgRGVjb2RlIGFuZCBFbmNvZGUNCkJhc2U2NCBEZWNvZGUgYW5kIEVuY29kZQ0K"
}