TypeAPI

An OpenAPI alternative to describe REST APIs for type-safe code generation.

Specification Editor Generator

C# Client Integration

To integrate the generated client SDK you need to add the Sdkgen.Client package to your project. Then you can simply paste the generated code into the source folder and start using the client for example:

Anonymous credentials = new Anonymous();
Client client = new Client("http://127.0.0.1:1080", credentials);

HelloWorld message = await client.Test().GetHello();

Console.WriteLine("Message: " + message.Message);
part of the Apioo-Project