> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.adid.dev/llms.txt.
> For full documentation content, see https://docs.adid.dev/llms-full.txt.

# Installing the SDK

The SDK is published as `@infinia/ida-sdk` in dual CJS + ESM.

```bash
npm install @infinia/ida-sdk
```

```ts
import { IDAClient } from '@infinia/ida-sdk';

const client = new IDAClient({
  baseUrl: 'https://adid.dev/api/v1',
  jwt: process.env.IDA_JWT,
});

const did = await client.createDID({ keyType: 'Ed25519' });
```