rthomasv3.TursoPlatformApi
0.9.0
dotnet add package rthomasv3.TursoPlatformApi --version 0.9.0
NuGet\Install-Package rthomasv3.TursoPlatformApi -Version 0.9.0
<PackageReference Include="rthomasv3.TursoPlatformApi" Version="0.9.0" />
paket add rthomasv3.TursoPlatformApi --version 0.9.0
#r "nuget: rthomasv3.TursoPlatformApi, 0.9.0"
// Install rthomasv3.TursoPlatformApi as a Cake Addin #addin nuget:?package=rthomasv3.TursoPlatformApi&version=0.9.0 // Install rthomasv3.TursoPlatformApi as a Cake Tool #tool nuget:?package=rthomasv3.TursoPlatformApi&version=0.9.0
About
This is an unofficial SDK for using the Turso Platform API in C#. It supports all available v1
endpoints.
Setup
Complete setup information can be found in the Turso quickstart guide.
- First install the Turso CLI.
- Use the CLI to get your account user or organization slug.
turso org list
- Create a platform API token.
turso auth api-tokens mint quickstart
Usage
Install the package in your project.
dotnet add package rthomasv3.TursoPlatformApi
The services and methods are a one-to-one mapping with the Turso documentation.
For example, to list all databases:
await tursoPlatformService.Databases.List();
Service | Usage |
---|---|
ITursoPlatformService | The overall platform service with properties for all other services. |
ITursoDatabaseService | Manage databases. |
ITursoGroupService | Manage groups. |
ITursoLocationService | View locations. |
ITursoOrganizationsService | Manage organizations. |
ITursoMembersService | Manage members. |
ITursoInvitesService | Manage invites. |
ITursoAuditLogsService | View audit logs. |
ITursoApiTokensService | Manage platform API tokens. |
Dependency Injection
The easiest way to use the Turso Platform API Service is using dependency injection.
Add a TursoPlatformApi
section to your appsettings.json
file. Use appsettings.Development.json
to avoid keys ending up in your repo.
{
"TursoPlatformApi": {
"DefaultOrganizationSlug": "<your-organization-slug>",
"AuthToken": "<your-api-token>"
}
}
After that you can add Turso Platform API Service using the provided services extension method. If you prefer, you can pass in your org slug and API key to the AddTursoPlatformService
method instead of using appsettings.json
.
builder.Services.AddTursoPlatformService();
Then you can add any of the API services to the constructors in your application.
Instance
You can also create and use an instance directly if you prefer.
// create a new instance
var tursoPlatformApi = new TursoPlatformApi.TursoPlatformService("<your-organization-slug>", "<your-api-token>");
var allGroups = await tursoPlatformApi.Groups.List();
or
// static instance
TursoPlatformApi.TursoPlatformService.Initialize("<your-organization-slug>", "<your-api-token>");
var allDatabases = await TursoPlatformApi.TursoPlatformService.Instance.Databases.List();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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 is compatible. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration.Json (>= 9.0.2)
- Microsoft.Extensions.Http (>= 9.0.2)
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration.Json (>= 9.0.2)
- Microsoft.Extensions.Http (>= 9.0.2)
-
net8.0
- Microsoft.Extensions.Configuration.Json (>= 9.0.2)
- Microsoft.Extensions.Http (>= 9.0.2)
-
net9.0
- Microsoft.Extensions.Configuration.Json (>= 9.0.2)
- Microsoft.Extensions.Http (>= 9.0.2)
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.9.0 | 52 | 2/21/2025 |