https://github.com/leadpingai/leadping-dotnet
Official .NET SDK for the Leadping API.
https://github.com/leadpingai/leadping-dotnet
api-client csharp dotnet kiota leadping leadping-api nuget openapi rest-api sdk
Last synced: about 7 hours ago
JSON representation
Official .NET SDK for the Leadping API.
- Host: GitHub
- URL: https://github.com/leadpingai/leadping-dotnet
- Owner: leadpingai
- License: mit
- Created: 2026-06-23T20:24:19.000Z (12 days ago)
- Default Branch: main
- Last Pushed: 2026-07-02T02:06:53.000Z (3 days ago)
- Last Synced: 2026-07-02T04:28:21.115Z (3 days ago)
- Topics: api-client, csharp, dotnet, kiota, leadping, leadping-api, nuget, openapi, rest-api, sdk
- Language: C#
- Homepage: https://leadping.ai/docs/sdks/dotnet
- Size: 353 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/Leadping.OpenApiClient/)
[](https://github.com/leadpingai/leadping-dotnet/actions/workflows/publish.yml)
[](https://www.nuget.org/packages/Leadping.OpenApiClient/)
[](https://github.com/leadpingai/leadping-dotnet/actions/workflows/codeql.yml)
#  Leadping .NET SDK
Type-safe .NET client for the Leadping API.
## Install
```bash
dotnet add package Leadping.OpenApiClient
```
For GitHub Packages:
```bash
dotnet nuget add source https://nuget.pkg.github.com/leadpingai/index.json \
--name leadping-github \
--username USERNAME \
--password GITHUB_TOKEN
dotnet add package Leadping.OpenApiClient --source leadping-github
```
## Use
```csharp
using Leadping.OpenApiClient;
using Microsoft.Kiota.Abstractions;
IRequestAdapter adapter = CreateLeadpingRequestAdapter();
var client = new LeadpingOpenApiClient(adapter);
var me = await client.Users.Me.GetAsync();
```
`CreateLeadpingRequestAdapter` is application code. Configure it to send one of:
- `Authorization: Bearer `
- `X-Leadping-Api-Key: `
The client defaults to `https://api.leadping.ai` when the adapter does not already have a base URL.
## Links
- [Documentation](https://leadping.ai/docs)
- [API reference](https://leadping.ai/docs/api-reference)
- [License](LICENSE)