https://github.com/leadpingai/leadping-typescript
Official TypeScript SDK for the Leadping API.
https://github.com/leadpingai/leadping-typescript
api-client javascript kiota leadping leadping-api nodejs npm openapi rest-api sdk typescript
Last synced: 3 days ago
JSON representation
Official TypeScript SDK for the Leadping API.
- Host: GitHub
- URL: https://github.com/leadpingai/leadping-typescript
- Owner: leadpingai
- License: mit
- Created: 2026-06-23T20:27:46.000Z (11 days ago)
- Default Branch: main
- Last Pushed: 2026-07-02T02:06:54.000Z (3 days ago)
- Last Synced: 2026-07-02T04:00:16.764Z (3 days ago)
- Topics: api-client, javascript, kiota, leadping, leadping-api, nodejs, npm, openapi, rest-api, sdk, typescript
- Language: TypeScript
- Homepage: https://leadping.ai/docs/sdks/typescript
- Size: 247 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/@leadping/sdk)
[](https://github.com/leadpingai/leadping-typescript/actions/workflows/publish.yml)
[](https://www.npmjs.com/package/@leadping/sdk)
[](https://github.com/leadpingai/leadping-typescript/actions/workflows/codeql.yml)
#  Leadping TypeScript SDK
Type-safe TypeScript client for the Leadping API.
## Install
```bash
npm install @leadping/sdk
```
The generated client uses a Kiota request adapter. Install the default fetch adapter:
```bash
npm install @microsoft/kiota-http-fetchlibrary
```
GitHub Packages is also available:
```bash
npm config set @leadpingai:registry https://npm.pkg.github.com
npm install @leadpingai/sdk
```
## Use
```ts
import { createLeadpingOpenApiClient } from "@leadping/sdk";
const adapter = createLeadpingRequestAdapter();
const client = createLeadpingOpenApiClient(adapter);
const me = await client.users.me.get();
```
`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)