Packages
| Language | Package | Install | Registry | Repository |
|---|---|---|---|---|
| TypeScript | @leadping/sdk | npm install @leadping/sdk | npm | leadpingai/leadping-typescript |
| Python | leadping | pip install leadping | PyPI | leadpingai/leadping-python |
| .NET | Leadping.OpenApiClient | dotnet add package Leadping.OpenApiClient | NuGet | leadpingai/leadping-dotnet |
| Go | github.com/leadpingai/leadping-go | go get github.com/leadpingai/leadping-go | Go module | leadpingai/leadping-go |
Authentication
Each SDK accepts a Kiota request adapter. Configure that adapter to send the correct Leadping authentication header:| Header | Use |
|---|---|
Authorization: Bearer <token> | User or account-scoped API access |
X-Leadping-Api-Key: <key> | Business API key integrations |
https://api.leadping.ai as the base URL when the adapter does not already have one.
Client entry points
| Language | Entry point |
|---|---|
| TypeScript | createLeadpingOpenApiClient(requestAdapter) |
| Python | LeadpingOpenApiClient(request_adapter) |
| .NET | new LeadpingOpenApiClient(requestAdapter) |
| Go | leadping.NewLeadpingOpenApiClient(requestAdapter) |
Versioning
SDK releases use normalvX.Y.Z tags. Publish workflows automatically choose the next patch version from the latest Git tag and the relevant package registry version.

