Mindee 2.1.1-preview1

Prefix Reserved
This is a prerelease version of Mindee.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Mindee --version 2.1.1-preview1
                    
NuGet\Install-Package Mindee -Version 2.1.1-preview1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mindee" Version="2.1.1-preview1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Mindee" Version="2.1.1-preview1" />
                    
Directory.Packages.props
<PackageReference Include="Mindee" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Mindee --version 2.1.1-preview1
                    
#r "nuget: Mindee, 2.1.1-preview1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Mindee@2.1.1-preview1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Mindee&version=2.1.1-preview1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Mindee&version=2.1.1-preview1&prerelease
                    
Install as a Cake Tool

License: MIT GitHub Workflow Status NuGet NuGet Join Mindee on Slack

Mindee API Helper Library for .NET

The official Mindee API Helper Library for the .NET ecosystem to quickly and easily connect to Mindee's API services.

This library is compatible with:

  • .NET Standard 2.0
  • .NET 4.7.2
  • .NET 6+

Quick Start

Here's the TL;DR of getting started.

First, get an API Key

Then, install this library:

dotnet add package Mindee

Define the API Key

The API key is retrieved using IConfiguration. So you could define it in multiple ways:

  • From an environment variable
MindeeApiSettings__ApiKey
  • From an appsettings.json file
"MindeeApiSettings": {
    "ApiKey": ""m-api-key"
},

Instantiate from dependency injection (DI)

In your Startup.cs or Program.cs file, configure the dependency injection (DI) as follows:

services.AddMindeeClient();

This call will configure the client entry point and the pdf library used internally.

Then, in your controller or service instance, pass as an argument the class MindeeClient.

Instantiate manually

Or, you could also simply instantiate a new instance of MindeeClient:

using Mindee;

var mindeeClient = MindeeClientInit.Create("MyKey");

Let's parse an invoice:

var prediction = await _mindeeClient
    .LoadDocument(new FileInfo("/path/to/the/file.ext"))
    .ParseAsync<InvoiceV4Inference>();

Usage

You can also use the client with your custom documents:

CustomEndpoint myEndpoint = new CustomEndpoint(
    endpointName: "wnine",
    accountName: "john",
    version: "1.1" // optional
);

var prediction = await _mindeeClient
    .LoadDocument(new FileInfo("/path/to/the/file.ext"))
    .ParseAsync(myEndpoint);

Further Reading

There's more to it than that for those that need more features, or want to customize the experience.

All the juicy details are described in the Official Guide.

You also can use the Reference documentation to dig deeper in the code.

Or feel free to reach us in our slack community channel 😃 !

License

Copyright © Mindee

Available as open source under the terms of the MIT License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.34.0 236 10/1/2025
3.33.0 178 9/25/2025
3.32.0 613 9/3/2025
3.31.0 214 8/27/2025
3.30.0 223 8/4/2025
3.29.0 138 7/29/2025
3.29.0-rc4 858 7/22/2025
3.29.0-rc3 162 7/9/2025
3.29.0-rc2 184 7/3/2025
3.29.0-rc1 172 6/30/2025
3.28.0 962 6/4/2025
3.27.0 511 4/22/2025
3.26.0 326 4/16/2025
3.25.0 224 4/8/2025
3.24.3 446 2/13/2025
3.24.2 387 1/9/2025 3.24.2 is deprecated.
3.24.1 258 1/8/2025 3.24.1 is deprecated.
3.24.0 319 12/26/2024 3.24.0 is deprecated.
3.23.0 237 12/13/2024
3.22.0 218 11/28/2024
3.21.0 238 11/14/2024
3.20.1 311 10/22/2024
3.20.0 196 10/11/2024
3.19.0 225 9/18/2024
3.18.4 556 8/30/2024
3.18.3 397 7/23/2024
3.18.2 237 7/22/2024 3.18.2 is deprecated because it has critical bugs.
3.18.1 214 7/19/2024 3.18.1 is deprecated because it has critical bugs.
3.18.0 211 7/18/2024 3.18.0 is deprecated because it has critical bugs.
3.17.0 394 6/26/2024 3.17.0 is deprecated because it has critical bugs.
3.16.0 678 6/11/2024
3.15.0 390 5/28/2024
3.14.0 245 5/21/2024
3.13.0 638 4/30/2024
3.12.0 1,373 4/8/2024
3.11.1 261 4/5/2024 3.11.1 is deprecated because it is no longer maintained.
3.11.0 252 3/26/2024 3.11.0 is deprecated because it is no longer maintained.
3.10.0 521 3/6/2024 3.10.0 is deprecated because it is no longer maintained.
3.9.0 373 1/30/2024 3.9.0 is deprecated because it is no longer maintained.
3.8.0 1,240 12/20/2023 3.8.0 is deprecated because it is no longer maintained.
3.7.1 231 12/20/2023 3.7.1 is deprecated because it is no longer maintained.
3.7.0 378 11/22/2023 3.7.0 is deprecated because it is no longer maintained.
3.6.0 268 11/17/2023 3.6.0 is deprecated because it is no longer maintained.
3.5.0 204 11/13/2023 3.5.0 is deprecated because it is no longer maintained.
3.4.0 414 10/20/2023 3.4.0 is deprecated because it is no longer maintained.
3.3.0 420 9/22/2023 3.3.0 is deprecated because it is no longer maintained.
3.2.0 286 9/13/2023 3.2.0 is deprecated because it is no longer maintained.
3.1.0 590 8/9/2023 3.1.0 is deprecated because it is no longer maintained.
3.0.0 3,122 7/28/2023 3.0.0 is deprecated because it is no longer maintained.
2.2.1 577 5/30/2023 2.2.1 is deprecated because it is no longer maintained.
2.2.0 528 3/16/2023 2.2.0 is deprecated because it has critical bugs.
2.1.2 244 3/9/2023 2.1.2 is deprecated because it is no longer maintained.
2.1.1 245 3/8/2023 2.1.1 is deprecated because it is no longer maintained.
2.1.1-preview2 283 3/8/2023 2.1.1-preview2 is deprecated because it is no longer maintained.
2.1.1-preview1 315 3/8/2023 2.1.1-preview1 is deprecated because it is no longer maintained.
2.1.0 273 2/20/2023 2.1.0 is deprecated because it is no longer maintained.
2.0.0 3,792 2/3/2023 2.0.0 is deprecated because it is no longer maintained.
1.4.0 507 1/4/2023 1.4.0 is deprecated because it is no longer maintained.
1.3.0 509 12/22/2022 1.3.0 is deprecated because it is no longer maintained.
1.2.0 483 12/9/2022 1.2.0 is deprecated because it is no longer maintained.
1.1.0 553 11/28/2022 1.1.0 is deprecated because it is no longer maintained.
1.0.0 555 11/17/2022 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc1 297 11/16/2022 1.0.0-rc1 is deprecated because it is no longer maintained.

CHANGELOG.md