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 Assistant API

POST
https://api.figolabs.ai/api/v1/chat/assistant/image/{assistantid}
Apis
Maintainer:Figo AI Labs
Image Assistant API provides a REST API interface to allow you interact with your Image AI Assistants or Chatbots created on FigoAILabs console.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.figolabs.ai/api/v1/chat/assistant/image/' \
--header 'Authorization: Bearer {Your API Key}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "imageUrlOrBase64s": [
        {
            "imageUrlOrBase64": "https://res.cloudinary.com/cyclops-information-systems/image/upload/v1737484010/FigoAILabs/figoailabs_herobg_webp_wfvblv.webp",
            "mimeType": "image/webp"
        }
    ]
}'
Response Response Example
200 - Success
{
    "responseCode": "00",
    "responseMessage": "Successful",
    "responseData": "[\n  {\n    \"name\": \"Emmanuel T\",\n    \"dateOfBirth\": \"Not visible\",\n    \"state\": \"Not visible\"\n  }\n]"
}

Request

Path Params
assistantid
string 
required
Header Params
Content-Type
string 
required
Example:
application/json
Authorization
string 
required
Example:
Bearer {Your API Key}
Body Params application/json
imageUrlOrBase64s
array [object {2}] 
required
imageUrlOrBase64
string 
optional
mimeType
string 
optional
Examples

Responses

🟢200OK
application/json
Success
Body
responseCode
string 
required
00-success response, 99-failure response
responseMessage
string 
required
message
responseData
string 
required
🟠401Unauthorized
Modified at 2025-04-22 18:42:45
Previous
Chat Assistant API
Next
Text To Speech API
Built with