Hello, I am trying to create an app in which users can submit images for analysis via AI.
I am using a platform called Landing Lens to perform the image analysis and they provide an API with the following command:
curl --location --request POST 'https://predict.app.landing.ai/inference/v1/predict?endpoint_id=6304db4d-491b-4734-ba19-c47a120b0cd5' \
--header 'Content-Type: multipart/form-data' \
--header 'apikey: YOUR_APIKEY' \
--form 'file=@"YOUR_IMAGE"'
I've gotten as far as being able to set up the headers within flutterflow but am unsure about how to configure the rest of the cURL command.