rthomasv3.TursoPlatformApi 0.9.0

dotnet add package rthomasv3.TursoPlatformApi --version 0.9.0                
NuGet\Install-Package rthomasv3.TursoPlatformApi -Version 0.9.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="rthomasv3.TursoPlatformApi" Version="0.9.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add rthomasv3.TursoPlatformApi --version 0.9.0                
#r "nuget: rthomasv3.TursoPlatformApi, 0.9.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.
// 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.

  1. First install the Turso CLI.
  2. Use the CLI to get your account user or organization slug.
     turso org list
    
  3. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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