Overview
Fritz is a .NET library designed to simplify interaction with AVM Fritz!Box routers via the TR-064 protocol. It provides easy access to features like phonebook exports and device information.
Quick Start
Here is a simple example of how to authenticate and export the phonebook as a CSV file.
using Fritz;
var client = new FritzClient("http://fritz.box", "username", "password");
await client.AuthenticateAsync();
var csv = await client.Phonebook.ExportCsvAsync();
File.WriteAllText("phonebook.csv", csv);
For more details, visit the GitHub Repository.