Skip to content

credyt/sdk-ts

Repository files navigation

SDK for Credyt.ai API

Key links:

Getting started

Currently supported environments

  • LTS versions of Node.js

Install the @credyt/api-client package

Install the CredytApi client library for JavaScript with npm:

npm install @credyt/api-client

Examples

import { CredytApiClient } from "@credyt/api-client";

async function example() {
    const credential = { key: process.env.CREDYT_API_KEY };
    const client = new CredytApiClient(credential);
    const result = await client.customers.list();
    console.log(result);
}

async function main() {
  await example();
}

main().catch(console.error);

For more examples, check the samples folder.

About

TypeScript/JavaScript SDK for Credyt API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors