Image Generation
Image Analysis
Model Training
Content Moderation
Authentication
Server Status
Image Analysis
Image text detection
POST
/
api
/
ai
/
images
/
v2
/
image-analysis
Copy
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/image-analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'output_type=<string>' \
--form 'training_data=<string>' \
--form 'question=<string>' \
--form 'randomness=<string>' \
--form 'stream_data=<string>'
Copy
{
"status": "Error",
"message": "Something went wrong. We were unable to detect the text.",
"processing_time": 6240.1868269999995,
"processing_id": "12935919-fd9f-47a2-8c53-57f231c6bf9a",
"processing_count": 1
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
multipart/form-data
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/image-analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'output_type=<string>' \
--form 'training_data=<string>' \
--form 'question=<string>' \
--form 'randomness=<string>' \
--form 'stream_data=<string>'
Copy
{
"status": "Error",
"message": "Something went wrong. We were unable to detect the text.",
"processing_time": 6240.1868269999995,
"processing_id": "12935919-fd9f-47a2-8c53-57f231c6bf9a",
"processing_count": 1
}
Assistant
Responses are generated using AI and may contain mistakes.