Skip to content

Latest commit

 

History

History

README.md

Aignostics Platform TypeScript SDK

The TypeScript SDK for the Aignostics Platform.

Installation

npm install @aignostics/sdk

Usage

import { PlatformSDKHttp } from '@aignostics/sdk';

// Create SDK instance with a token provider
const sdk = new PlatformSDKHttp({
  baseURL: 'https://api.aignostics.com',
  tokenProvider: () => 'your-access-token-here',
});

// Use the SDK
const applications = await sdk.listApplications();
console.log(applications);

API Reference

For detailed API documentation, see the main project documentation.

Note

Authentication utilities are not included in this SDK. The SDK focuses solely on API communication and requires you to provide your own token management.