The Examplary API SDK for TypeScript provides a type-safe client for the Examplary API. It includes methods for all API endpoints, as well as type definitions for request and response data.
Installation
You can install the SDK using npm or yarn:
yarn add @examplary/sdkUsage
To use the SDK, create an instance of the client and provide your personal API key:
import { Examplary } from "@examplary/sdk";
const client = new Examplary({
apiKey: "my-api-key",
});
const questionTypes = await client.questionTypes.listPublic();