Official TypeScript/JavaScript SDK for the VIT Network API.
npm install vit-network-sdkimport { VITClient } from 'vit-network-sdk';
const client = new VITClient({ apiKey: 'your-key' });
// Get AI prediction for a match
const prediction = await client.predictions.get({ matchId: 'EPL_2026_001' });
console.log(prediction.vitScore, prediction.confidence);
// Check wallet balance
const balance = await client.wallet.balance();client.predictions— AI match predictions and VIT scoresclient.wallet— Multi-currency balances and transfersclient.marketplace— Signal listing and subscriptionclient.blockchain— VITCoin, DID, and oracle interactionsclient.agents— Agent swarm status and intelligence feeds