Developer Tools

SDKs & Libraries

Official client libraries for building with AIIP in your favorite language

JS
v1.0.0-beta

JavaScript / TypeScript

npm install @aiip/sdk
PY
v0.9.0-alpha

Python

pip install aiip-sdk
GO
v0.8.0-alpha

Go

go get github.com/aiip/sdk-go

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);

Documentation

Comprehensive guides and API references for each SDK

View Docs →

Examples

Sample projects and code snippets to get you started quickly

Browse Examples →

Need a Different Language?

We're actively working on SDKs for more languages. Let us know what you need!

Request SDK