Fal 0.0.0-dev.29

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

Fal

Nuget package dotnet License: MIT Discord

Features 🔥

  • Fully generated C# SDK based on official Fal.ai OpenAPI specification using AutoSDK
  • Same day update to support new features
  • Updated and supported automatically if there are no breaking changes
  • All modern .NET features - nullability, trimming, NativeAOT, etc.

Usage

using Fal;

using var client = new FalClient(apiKey);

Apps Get Meta Returns Platform Metadata

var client = GetAuthorizedApi();

var response = await client.Meta.GetMetaAsync();

Apps Get Pricing Returns Price For Endpoint

var client = GetAuthorizedApi();

var response = await client.Models.GetPricingAsync(
    endpointId: "fal-ai/flux/dev");

Apps Search Requests Returns Results

var client = GetAuthorizedApi();

var response = await client.Models.SearchRequestsAsync(
    limit: 5);

Billing Get Account Billing Returns Username

var client = GetAuthorizedApi();

try
{
    var response = await client.Account.GetAccountBillingAsync();

}
catch (ApiException ex) when (ex.Message.Contains("Admin API key"))
{
}

Billing Get Usage Returns Usage Data

var client = GetAuthorizedApi();

try
{
    var response = await client.Models.GetUsageAsync(limit: 5);

}
catch (ApiException ex) when (ex.Message.Contains("Admin API key"))
{
}

Secrets

var client = GetAuthorizedApi();

try
{
    var response = await client.Keys.ListApiKeysAsync(limit: 10);

}
catch (ApiException ex) when (ex.Message.Contains("Admin API key"))
{
}

Support

Priority place for bugs: https://github.com/tryAGI/Fal/issues Priority place for ideas and general questions: https://github.com/tryAGI/Fal/discussions Discord: https://discord.gg/Ca2xhfBf3v

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.

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.
  • net10.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
0.0.0-dev.29 28 3/20/2026
0.0.0-dev.27 30 3/20/2026
0.0.0-dev.26 29 3/19/2026
0.0.0-dev.24 33 3/19/2026
0.0.0-dev.22 22 3/19/2026
0.0.0-dev.21 28 3/19/2026
0.0.0-dev.20 28 3/19/2026
0.0.0-dev.16 25 3/19/2026
0.0.0-dev.15 25 3/19/2026
0.0.0-dev.14 29 3/19/2026
0.0.0-dev.13 25 3/19/2026
0.0.0-dev.12 28 3/19/2026
0.0.0-dev.11 29 3/18/2026
0.0.0-dev.10 29 3/18/2026
0.0.0-dev.9 25 3/18/2026
0.0.0-dev.8 25 3/18/2026
0.0.0-dev.7 29 3/18/2026
0.0.0-dev.6 30 3/18/2026
0.0.0-dev.5 27 3/18/2026
0.0.0-dev.4 25 3/18/2026
Loading failed