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 official support for the following platforms:

Don't see support for your favorite platform? Make a feature request!

Generic No-Code Integration

You'll need to use HTTP nodes in your workflow that can POST and GET a specified URL.

First, POST a file to the POST /v2/inferences/enqueue route. You'll need you API key and Model ID.

In this POST response, 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?