esCAMTParser 2511.0.0

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

Extreme Solutions CAMT053 Parser

Developed to provide a simple, easy-to-use CAMT053 parser that works across multiple banks in the SEPA zone.
The package has been compiled and tested for use within Microsoft Visual Studio 2022, and also in near production-ready internal applications for CRM, Accounting, and Sales pipelines.

Currently supports parsing of CAMT053.001.002 and CAMT053.001.008 formats with CAMT053.001.002 as base class;

Source code: GitHub | NuGet: esCAMTParser


Getting Started

Install the package

Install esCAMTParser via NuGet: dotnet add package esCAMTParser

How to use

To parse an CAMT file you can use the following basic example

using esCAMTParser;

public function ImportCAMT(string camtFile)
{
    var statement = esCAMTParser.Parser.Parse(camtFile);

    foreach (var entry in statement.Result)
    {
        //do mapping of fields
        foreach (var transaction in entry.Transactions)
        {
            //do mapping of individual transactions contained in a statement
        }
    }
}

Parser.Parse() supports either a full file input (e.g. file path) or a stream by preceding with var stream = camtFile.OpenReadStream();

Class exposure

The CAMT parser casts the content of a CAMT file into a single object containing one or more transactions as subclass with the related details on a statement:

Statement (Stmt tag)

The statement class returns the following values:

  • String: StatementId: Tag Id - Id of the processed statement.
  • String: SequenceNumber: Tag ElctrncSeqNb or SeqNb - Sequence number for statement. Returns empty if not provided
  • String: Reference: Generated statement reference comprised of either StatementId or StatementId-SequenceNumber if SequenceNumber is provided
  • DateTime: CreationDateTime: Tag CreDtTm - Statement file creation date and time
  • DateTime: FromDate: Tag FrToDt/FrDtTm - The date from which the statement is valid
  • DateTime: EndDate: Tag FrToDt/ToDtTm - The date until which the statement is valid
  • String: AccountIBAN: Tag Acct/Id/IBAN - The IBAN of the account for which the statement is provided
  • String: Currency: Tag Acct/@Ccy - Returns the statements primary currency if provided
  • Decimal: OpeningBalance: Tag Bal/Amt (CD=OPBD) - The openening balance of the statement
  • Decimal: ClosingBalance: Tag Bal/Amt (CD=CLBD) - The closing balance of the statement
  • String: AdditionalInformation: Tag AddtlInf - Additional information on the statement. Returns empty if not proviced
  • ICollection Transaction: Transactions: Tag Ntry - Collection of transactions contained in the current statement

###Transaction The transactions contain the following values as collection within the statement:

  • DateTime: BookingDate: Tag BookgDt/Dt - The date on which the transaction was booked
  • DateTime: ValueDate: Tag ValDt/Dt - The date on which the transaction was valued
  • String: CreditDebitIndicator: Tag CdtDbtInd - The credit or debit indicator of the transaction
  • Decimal: Amount: Tag Amt - The amount of the transaction
  • String: Currency: Tag Amt/@Ccy - The currency of the transaction
  • String: Status: Tag TxDtls/Sts - The status of the transaction (e.g. ACTC, PDNG, RJCT, etc.)
  • ICollection: Parties: Tag RltdPties - List of related parties to the transaction
  • ICollection: RelatedDates: Tag RltdDates - List of related dates to the transaction
  • ICollection: Remittance: Tag RmtInf - List of remittance information related to the transaction
  • ICollection: Reversal: Tag RtrInfo - List of reversal information related to the transaction
  • ICollection: References: Tag Refs - List of references related to the transaction
  • ICollection: Charges: Tag Chrgs - List of transaction charges related to the transaction
  • ICollection: Attributes: Tag multiple - List of additional attributes related to the transaction
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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
2511.0.0 434 11/19/2025
2510.4.0 187 10/20/2025
2508.2.0 244 8/29/2025
2508.1.0 213 8/29/2025
2508.0.0 243 8/28/2025
2507.0.0 505 7/25/2025