Fal 1.0.0
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Fal --version 1.0.0
NuGet\Install-Package Fal -Version 1.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="Fal" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Fal" Version="1.0.0" />
<PackageReference Include="Fal" />
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 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Fal, 1.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 Fal@1.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=Fal&version=1.0.0
#tool nuget:?package=Fal&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Fal
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
This project is supported by JetBrains through the Open Source Support Program.
| Product | Versions 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 |
|---|---|---|
| 1.0.1-dev.53 | 43 | 9/23/2026 |
| 1.0.1-dev.52 | 49 | 9/23/2026 |
| 1.0.1-dev.51 | 57 | 9/21/2026 |
| 1.0.1-dev.50 | 58 | 9/17/2026 |
| 1.0.1-dev.49 | 57 | 9/16/2026 |
| 1.0.1-dev.48 | 61 | 9/15/2026 |
| 1.0.1-dev.47 | 68 | 9/15/2026 |
| 1.0.1-dev.46 | 58 | 9/13/2026 |
| 1.0.1-dev.45 | 60 | 9/12/2026 |
| 1.0.1-dev.44 | 66 | 9/10/2026 |
| 1.0.1-dev.43 | 69 | 9/9/2026 |
| 1.0.1-dev.42 | 65 | 9/4/2026 |
| 1.0.1-dev.41 | 70 | 9/3/2026 |
| 1.0.1-dev.40 | 69 | 9/2/2026 |
| 1.0.1-dev.39 | 64 | 9/2/2026 |
| 1.0.1-dev.38 | 69 | 9/1/2026 |
| 1.0.1-dev.37 | 66 | 9/1/2026 |
| 1.0.0 | 123 | 6/23/2026 |
| 0.0.0-dev.82 | 100 | 6/16/2026 |
| 0.0.0-dev.73 | 85 | 5/21/2026 |
Loading failed