This SDK helps you use the AI Search API in your Node.js or TypeScript projects.
It gives you semantic search with context, flexible response formats, and strong TypeScript support.👉 To start, create a free account:
import { AISearchAPIClient } from 'aisearchapi-client';const client = new AISearchAPIClient({ apiKey: 'your-api-key-here' // get it from the Dashboard});const result = await client.search({ prompt: 'What is machine learning and how does it work?', response_type: 'markdown'});console.log(result.answer);console.log('Sources:', result.sources);