Eudr.Traces.ApiClient 10.0.0

dotnet add package Eudr.Traces.ApiClient --version 10.0.0
                    
NuGet\Install-Package Eudr.Traces.ApiClient -Version 10.0.0
                    
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="Eudr.Traces.ApiClient" Version="10.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Eudr.Traces.ApiClient" Version="10.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Eudr.Traces.ApiClient" />
                    
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 Eudr.Traces.ApiClient --version 10.0.0
                    
#r "nuget: Eudr.Traces.ApiClient, 10.0.0"
                    
#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 Eudr.Traces.ApiClient@10.0.0
                    
#: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=Eudr.Traces.ApiClient&version=10.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Eudr.Traces.ApiClient&version=10.0.0
                    
Install as a Cake Tool

Eudr.Traces.ApiClient

Eudr.Traces.ApiClient is a .NET 10 library that provides an abstraction layer for communicating with the EU TRACES system regarding EUDR (EU Deforestation Regulation) operations.

It defines the IEUDRServiceAgent interface, which enables retrieval, submission, and validation of Due Diligence Statements (DDS). Contributions are very welcome – feel free to add more helpful methods or validations to improve the functionality of this library.


📦 Installation

Install via NuGet.org:

dotnet add package Eudr.Traces.ApiClient

Or in your .csproj:

<PackageReference Include="Eudr.Traces.ApiClient" Version="*" />

🚀 Quick Example

using Eudr.Traces.Integrations;
using Eudr.Traces.Integrations.Entities;

public class Demo
{
    private readonly IEUDRServiceAgent _agent;

    public Demo(IEUDRServiceAgent agent)
    {
        _agent = agent;
    }

    public async Task Run()
    {
        //Verify connection
        var responseEcho = await agent.TestEchoAsync();
        Console.WriteLine("TestEcho Success=" + responseEcho);

        // Submit DDS with GPS
        var gpsRequest = new DDSWithGps { Latitude = 56.0, Longitude = 14.0 }; // and all othere properties needs
        var ddsId = await _agent.SubmitDdsAsync(gpsRequest);

        // Retrieve DDS status on an submitted and poll until you get reference & verification 
        var status = await _agent.GetDdsStatusAsync(new[] { Guid.Parse("11111111-1111-1111-1111-111111111111") });

        // Retrieve DDS by reference & verification see 
        var dds = await _agent.GetStatementByIdentifiersAsync("EU-2025-SE-000001", "VERIF-001234");

        // Validate DDS on a simple way
        var isValid = await _agent.ValidateDDSAsync("EU-2025-SE-000001", "VERIF-001234");
    }
}

📚 Features

  • Verifiy and test connection, user and authKey
  • Retrieve DDS status by GUID identifiers
  • Retrieve DDS by reference and verification numbers
  • Submit DDS (full request, GPS-based, or reference-based)
  • Validate DDS against defined business rules
  • Abstraction layer over TRACES SOAP services
  • .NET 9 compatible

🛠️ Target Framework

  • .NET 9

💻 Repository

Source code and issue tracking:
GitHub - Eudr.Traces.ApiClient


📜 License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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
10.0.0 150 4/5/2026
1.0.4 219 10/3/2025
1.0.3 184 10/3/2025
1.0.2 239 10/2/2025
1.0.1 244 10/1/2025
1.0.0 227 10/1/2025

EUDR-integration updated to .net 10