Atlassian Document Format API Blog

Explore the latest updates and best practices for working with the Atlassian Document Format API.

Introducing AdfKit: The Ultimate NuGet Package for Atlassian Document Format Conversions

Blog Single
5 min read

We’re excited to announce the launch of AdfKit, our comprehensive NuGet package that brings the full power of Atlassian Document Format (ADF) conversion directly to your .NET applications. While our API service has been serving thousands of developers worldwide, we recognized that many teams need the flexibility, performance, and security benefits that come with a local solution.

Why Choose AdfKit Over the API?

Enhanced Security & Privacy

With AdfKit, your sensitive documents never leave your infrastructure. Process confidential content, proprietary documentation, and sensitive data without worrying about external API calls or data transmission. Perfect for:

  • Enterprise environments with strict security policies
  • Financial institutions handling sensitive data
  • Healthcare applications requiring HIPAA compliance
  • Government systems with data sovereignty requirements

Superior Performance

Eliminate network latency and API rate limits. AdfKit processes documents locally, delivering:

  • 10x faster conversion speeds for bulk operations
  • Zero network overhead - no waiting for API responses
  • Unlimited conversions - process thousands of documents without throttling
  • Predictable performance - no dependency on internet connectivity

Cost-Effective for High Volume

For teams processing large volumes of documents, AdfKit offers significant cost savings:

  • No per-conversion fees - pay once, convert unlimited documents
  • Predictable licensing costs - annual per-developer pricing
  • Volume discounts available for enterprise teams
  • No surprise overage charges during peak usage periods

Developer-Friendly Integration

AdfKit is designed for seamless integration into your .NET ecosystem:

  • Native .NET implementation - no external dependencies
  • Type-safe ADF object model for programmatic document creation
  • Async/await support for responsive applications
  • Comprehensive IntelliSense documentation

Comprehensive Format Support

AdfKit supports extensive format conversions including:

Convert TO ADF from:

  • HTML with full semantic structure
  • Markdown with proper formatting

Getting Started

1. Install the NuGet Package

dotnet add package AdfKit

2. Basic Usage

using AdfKit;

var converter = new HtmlToAdfConverter();
    
    // Convert HTML to ADF
    var html = """
        <h1>Welcome to AdfKit</h1>
        <p>This is a <strong>powerful</strong> HTML to ADF converter.</p>
        <ul>
            <li>Easy to use</li>
            <li>High performance</li>
            <li>Production ready</li>
        </ul>
        """;

    var adfDocument = converter.ConvertHtml(html);
    Console.WriteLine(adfDocument);

Licensing and Support

AdfKit is available with flexible licensing options. Check out our pricing page for details. All licenses include one year of updates and email support.

Every license includes:

  • One year of updates and new features
  • Email support for implementation questions
  • Complete documentation and code samples
  • Commercial use rights for unlimited applications

Request your free 14-day trial - No credit card required!

Migration from API to AdfKit

Already using our API? Migration is straightforward:

Before (API):

var httpClient = new HttpClient();
var response = await httpClient.PostAsync("https://api.adfapi.dev/api/Html", content);
var adf = await response.Content.ReadAsStringAsync();

After (AdfKit):

var converter = new HtmlToAdfConverter();
var adfDocument = converter.ConvertHtml(html);

What’s Next?

We’re continuously improving AdfKit based on community feedback. Upcoming features include:

  • PowerShell module for automation scripts
  • Excel document support for table-heavy content
  • Custom extension API for specialized conversions
  • Visual Studio Code extension for developers

Get Started Today

Ready to supercharge your ADF conversion workflow?

  1. Start your free trial - Test AdfKit in your environment
  2. View pricing options - Find the right plan for your team
  3. Contact our team - Get personalized implementation guidance

Join the growing community of developers who’ve made the switch to local ADF processing with AdfKit. Your documents, your infrastructure, your control.


Questions about AdfKit? Reach out to our team at info@adfapi.dev