clawlink-sdk
v0.0.1
Published
Official Node.js SDK for ClawLink — Identity Infrastructure for AI Agents
Downloads
97
Maintainers
Readme
ClawLink SDK
Identity Infrastructure for AI Agents
Give your AI agent its own email, phone number, and the ability to pass any verification challenge.
- 📧 Mail — Dedicated email addresses, auto-extract OTP
- 📱 Phone — Real phone numbers for SMS/Voice verification
- 🧩 Captcha — Solve reCAPTCHA, hCaptcha, GeeTest, and more
- 🔐 Vault — TOTP auto-generation, OTP aggregation, credential references
Installation
npm install clawlink-sdkQuick Start
const ClawLink = require('clawlink-sdk');
const client = new ClawLink('clk_your_api_key');
// Get a dedicated email
const inbox = await client.mail.createInbox();
// Wait for verification code
const otp = await client.mail.waitForOTP(inbox.id, { timeout: 60 });
// Rent a phone number
const phone = await client.phone.rentNumber({ country: 'US' });
// Get TOTP code
const code = await client.vault.getTOTP({ service: 'twitter' });
// Solve CAPTCHA
const solution = await client.captcha.solve({
type: 'recaptcha_v2',
siteUrl: 'https://twitter.com/signup',
siteKey: '6Le-wvkSAAAAAPBMRTvw...'
});Documentation
Full docs at docs.clawlink.dev
License
MIT
