Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
---
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mindee node documentation
title: Mindee node documentation (Deprecated)
description: Learn how to use the Mindee node in n8n. Follow technical documentation to integrate Mindee node into your workflows.
contentType: [integration, reference]
---

# Mindee node

/// warning | Deprecated
This page documents the usage for the **Mindee V1 node**, which is now considered **deprecated**.
For new workflows, please use the **[MindeeV2 node](/integrations/builtin/app-nodes/n8n-nodes-base.mindeev2.md)** instead.
///

Use the Mindee node to automate work in Mindee, and integrate Mindee with other applications. n8n has built-in support for a wide range of Mindee features, including predicting invoices.

On this page, you'll find a list of operations the Mindee node supports and links to more resources.
Expand Down
64 changes: 64 additions & 0 deletions docs/integrations/builtin/app-nodes/n8n-nodes-base.mindeev2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mindee V2 node documentation
description: Learn how to use the Mindee V2 node in n8n. Follow technical documentation to integrate Mindee node into your workflows.
contentType: [integration, reference]
---

# Mindee V2 node

Use the **Mindee V2** node to analyze **any kind of document** (invoices, receipts, ID cards, contracts, payslips, custom models, …) with Mindee’s V2 “Queues & Polling” API.
Unlike the deprecated V1 node, the V2 node is **model-agnostic**: just specify the *Model ID* you want to run (an off-the-shelf or a custom one) and Mindee returns a structured JSON for every page.

On this page you will find:

* Supported operations
* All node parameters
* Links to credentials setup and templates

/// note | Credentials
Refer to [Mindee V2 credentials](/integrations/builtin/credentials/mindeev2Api.md) for guidance on creating and storing your API key.
///

## Operations

Mindee V2 currently exposes one generic operation:

| Resource | Operation | Description |
|-----------|---------------------|----------------------------------------------------------------------------------------------------------------------------|
| Inference | **Enqueue and Get** | Upload a document file (PDF, image, etc.), run the selected model, poll the server for results, and return the parsed data |

### Predict

| Parameter | Description |
|---------------------------|-------------------------------------------------------------------------------------------------|
| **Binary Property Name** | Name of the binary field that contains the file (default: `data`). |
| **Model ID** | The identifier of the model to run (*e.g.* `expense_receipts`, `invoice`, `your_custom_model`). |
| **File Alias (optional)** | An alias for the filename, useful for linking back to your system. |
| **Enable RAG** | Enable Retrieval-Augmented Generation for higher accuracy (supported plans only). |
| **Enable Polygons** | Return location polygons for all extracted fields (supported plans only). |
| **Enable Confidence** | Return confidence score for each field (supported plans only). |
| **Enable Raw Text** | Return full raw text of each page (supported plans only). |
| **Polling Timeout (sec)** | How long n8n should poll Mindee for results (default 120 s). |

## How it works

1. The node builds a `multipart/form-data` request with your file and options.
2. Mindee queues the inference and returns an `enqueue_id`.
3. The node polls `/inferences/{enqueue_id}` until the inference is finished or the timeout is reached.
4. The final structured JSON is returned to your workflow.

## Example workflow

1. **HTTP Request** – download a public receipt image.
2. **Mindee V2** – set *Binary Property Name* to `data` and *Model ID* to your desired model.
3. **(optional) Set** – post-process or map the parsed fields.

Running the workflow returns fields such as `total_amount`, `date`, `supplier_name`, etc., depending on the chosen model.

## Templates and examples

[[ templatesWidget(page.title, 'mindeeV2') ]]

--8<-- "_snippets/integrations/builtin/app-nodes/operation-not-supported.md"

13 changes: 11 additions & 2 deletions docs/integrations/builtin/credentials/mindee.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
---
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
title: Mindee credentials
title: Mindee credentials (Legacy)
description: Documentation for Mindee credentials. Use these credentials to authenticate Mindee in n8n, a workflow automation platform.
contentType: [integration, reference]
---

# Mindee credentials

/// warning | Deprecated
This page documents the usage for the **Mindee V1 credentials**, which are now considered **deprecated**.
To use V2 credentials, please use the **[Mindee V2 credentials](/integrations/builtin/credentials/mindeev2.md)** instead.
///

You can use these credentials to authenticate the following nodes:

- [Mindee](/integrations/builtin/app-nodes/n8n-nodes-base.mindee.md)

## Prerequisites

Create a [Mindee](https://mindee.com) account.
Have a [Mindee](https://platform.mindee.com) account.
/// Note | Legacy accounts
Creation of new legacy accounts is no longer possible.
To create a new Mindee V2 account, head to the [new Mindee interface](https://app.mindee.com).
///

## Supported authentication methods

Expand Down
28 changes: 28 additions & 0 deletions docs/integrations/builtin/credentials/mindeev2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Mindee V2 credentials
description: Documentation for Mindee V2 credentials. Use these credentials to authenticate MindeeV2 in n8n, a workflow automation platform.
contentType: [integration, reference]
---

# Mindee V2 credentials

You can use these credentials to authenticate the following nodes:
- [Mindee V2](/integrations/nodes/n8n-nodes-base.mindeev2/)

## Prerequisites

Have a [Mindee](https://app.mindee.com/) account.

## Supported authentication methods

Mindee V2 uses API key authentication.

## Related resources

Refer to the [Mindee documentation](https://docs.mindee.com) for more information.

## Using an API key

1. Log in to your [Mindee account](https://app.mindee.com/)
2. Follow the steps in the [Mindee API keys documentation](https://docs.mindee.com/integrations/api-keys) to create and retrieve your API key
3. Copy the API key and paste it into the **API Key** field in n8n
2 changes: 2 additions & 0 deletions nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ nav:
- Microsoft Teams: integrations/builtin/app-nodes/n8n-nodes-base.microsoftteams.md
- Microsoft To Do: integrations/builtin/app-nodes/n8n-nodes-base.microsofttodo.md
- Mindee: integrations/builtin/app-nodes/n8n-nodes-base.mindee.md
- MindeeV2: integrations/builtin/app-nodes/n8n-nodes-base.mindeev2.md
- MISP: integrations/builtin/app-nodes/n8n-nodes-base.misp.md
- Mistral AI: integrations/builtin/app-nodes/n8n-nodes-base.mistralai.md
- Mocean: integrations/builtin/app-nodes/n8n-nodes-base.mocean.md
Expand Down Expand Up @@ -960,6 +961,7 @@ nav:
- integrations/builtin/credentials/microsoftsql.md
- integrations/builtin/credentials/milvus.md
- integrations/builtin/credentials/mindee.md
- integrations/builtin/credentials/mindeev2.md
- integrations/builtin/credentials/miro.md
- integrations/builtin/credentials/misp.md
- integrations/builtin/credentials/mist.md
Expand Down