No-Code Integrations
No-Code and Low-Code integration support.
Overview
The Mindee API is well-suited to integrations in no-code and low-code platforms.
It's a relatively simple RESTful API so most tools and platforms can be integrated using HTTP nodes.
Officially Supported Integrations
We're hard at work providing official integrations for platforms that allow it.
Currently we have support for the following platforms:
n8n: basic support for workflows, official support coming soon
Zapier: officially supported
Make: officially supported
Don't see support for your favorite platform? Make a feature request!
Generic No-Code Integration
Only use this method if your no-code platform does not have an official integration.
You'll need to use HTTP nodes in your workflow that can POST and GET a specified URL.
First, POST as form-data to the Manual Integration route:
The Content-Type header must be set to
multipart/form-dataThe
Authorizationheader must have only your API key as the valueThe file or URL to process, one of:
file,file_base64, orurlThe Model ID,
model_id
If your no-code platform doesn't support the form-data Content-Type, you may post as application/json. In this case you must use file_base64 or url only.
In the response to the POST, there will be a polling_url attribute, save its value.
Wait 3 seconds.
Loop GET requests on the polling_url until the response contains a result_url .
Note: make sure to configure the node to not follow redirections.
Alternatively, loop on the polling_url until it redirects to the result.
Important: in all cases, wait at least 1 second between each poll.
A GET request to the result_url will contain the result payload.
Last updated
Was this helpful?

