FigoAILabs API Documentation
  1. APIs
FigoAILabs API Documentation
  • Quickstart
  • Website Javascript Plugin
  • Rate Limits & Pricing
  • APIs
    • Chat Assistant API
      POST
    • Image Assistant API
      POST
    • Text To Speech API
      POST
    • Speech To Text API
      POST
    • Guardrails API
      POST
    • CV Scoring API
      POST
    • Web Search API
      POST
    • Sentiment Analysis API
      POST
    • Message Context API
      POST
    • Image Analyzer API
      POST
  1. APIs

Image Analyzer API

POST
https://api.figolabs.ai/api/v1/image/extract
Apis
Maintainer:Figo AI Labs
The Image Analyzer API offers a RESTful interface for analyzing images and extracting meaningful insights or information from them.
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
instruction
string 
required
imageUrlOrBase64s
array [object {2}] 
required
mimetype
string 
optional
imageUrlOrBase64
string 
optional
Examples

Responses

🟢200OK
application/json
Success
Body
responseCode
string 
required
responseMessage
string 
required
responseData
string 
required
🟠401Unauthorized
Modified at 2025-04-22 18:52:10
Previous
Message Context API
Built with