import Nuntly from '@nuntly/sdk';const client = new Nuntly({ apiKey: 'My API Key',});// Automatically fetches more pages as needed.for await (const apiKeyListResponse of client.apiKeys.list()) { console.log(apiKeyListResponse.id);}
import Nuntly from '@nuntly/sdk';const client = new Nuntly({ apiKey: 'My API Key',});// Automatically fetches more pages as needed.for await (const apiKeyListResponse of client.apiKeys.list()) { console.log(apiKeyListResponse.id);}