Image Analyzer API
POST
https://api.figolabs.ai/api/v1/image/extract
Apis
Maintainer:Figo AI Labs
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.figolabs.ai/api/v1/image/extract' \
--header 'Authorization: Bearer {Your-API-Key}' \
--header 'Content-Type: application/json' \
--data-raw '{
"instruction": "Extract the names from this image. Retun them in a string array.",
"imageUrlOrBase64s" : [
{
"mimetype": "image/webp",
"imageUrlOrBase64" : "https://res.cloudinary.com/cyclops-information-systems/image/upload/v1737484010/FigoAILabs/figoailabs_herobg_webp_wfvblv.webp"
}
]
}'
Response Response Example
200 - Success
{
"responseCode": "00",
"responseMessage": "Successful",
"responseData": "The names extracted from the image are: [\"Emmanuel T\", \"FigoAI\"]"
}
Request
Header Params
Content-Type
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer {Your-API-Key}
Body Params application/json
Responses
Modified at 2025-04-22 18:52:10