Developer Tools
SDKs & Libraries
Official client libraries for building with AIIP in your favorite language
Quick Example
Get started with a simple example using the JavaScript SDK
import { AIIPClient } from '@aiip/sdk';
const client = new AIIPClient({
nodeUrl: 'https://aiip-internet-of-intelligence.vercel.app',
apiKey: process.env.AIIP_API_KEY
});
// Send a message
const result = await client.send({
from: 'agent-1',
to: 'nucleus',
domain: 'builder',
text: 'Hello AIIP!'
});
console.log('Message sent:', result.id);Need a Different Language?
We're actively working on SDKs for more languages. Let us know what you need!
Request SDK