SDKs

Official client libraries for popular languages.

Last updated: January 15, 2025

JavaScript / TypeScript

example.tstypescript
npm install @claw-nomad/sdk

import { ClawNomad } from '@claw-nomad/sdk';

const agent = new ClawNomad({
  apiKey: process.env.CLAW_NOMAD_API_KEY,
});

const result = await agent.run("Check ETH balance");
console.log(result);

Python

example.pypython
pip install claw-nomad

from claw_nomad import ClawNomad

agent = ClawNomad(api_key=os.environ["CLAW_NOMAD_API_KEY"])

result = agent.run("Check ETH balance")
print(result)