Skip to content

tryAGI/PixVerse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

PixVerse

Modern .NET SDK for PixVerse generated from the provider's OpenAPI definition with AutoSDK.

Nuget package dotnet License: MIT Discord

Generated from the source spec

Built from PixVerse's OpenAPI definition so the SDK stays close to the upstream API surface.

Auto-updated

Designed for fast regeneration and low-friction updates when the upstream API changes without breaking compatibility.

Modern .NET

Targets current .NET practices including nullability, trimming, NativeAOT awareness, and source-generated serialization.

Docs from examples

Examples stay in sync between the README, MkDocs site, and integration tests through the AutoSDK docs pipeline.

Usage

using PixVerse;

using var client = new PixVerseClient(apiKey);

Text-to-video

Create a PixVerse text-to-video generation request and poll the generated video result.

using var client = new PixVerseClient(apiKey);

var response = await client.CreateTextToVideoAsync(new TextToVideoRequest
{
    Prompt = "A calm cinematic shot of clouds moving over a mountain lake.",
    Model = PixVerseModel.V6,
    Duration = 5,
    Quality = VideoQuality.x540p,
    AspectRatio = AspectRatio.x16_9,
    MotionMode = "normal",
});

Get account balance

Read the PixVerse API account balance.

using var client = new PixVerseClient(apiKey);

var response = await client.GetAccountBalanceAsync();

Support

Bugs

Open an issue in tryAGI/PixVerse.

Ideas and questions

Use GitHub Discussions for design questions and usage help.

Community

Join the tryAGI Discord for broader discussion across SDKs.

Acknowledgments

JetBrains logo

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

Releases

No releases published

Packages

 
 
 

Contributors

Languages