🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@useagentstore/solve

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@useagentstore/solve

TypeScript SDK for useagentstore.com — CAPTCHA solver for AI agents.

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@useagentstore/solve

TypeScript SDK for solve.agentstore.dev — a CAPTCHA solver built for AI agents.

  • Zero dependencies
  • Works in Node 20+, Bun, Deno, and modern browsers
  • Self-serve signup — no account, no credit card
  • Target 95%+ success rate on Cloudflare Turnstile

Install

npm install @useagentstore/solve

Quick start

import { SolveClient } from '@useagentstore/solve';

// One-time: sign up (100 free calls)
const { apiKey } = await SolveClient.signup();

// Use the client
const client = new SolveClient({ apiKey });
const result = await client.solveTurnstile({
  url: 'https://example.com/login',
  sitekey: '0x4AAAAAAA...',
});

if (result.success) {
  console.log('token:', result.token);
  console.log('solved in', result.solvedInMs, 'ms');
} else {
  console.error('failed:', result.error);
}

API

new SolveClient(options)

OptionTypeDefault
apiKeystringrequired
baseUrlstringhttps://api.useagentstore.com
timeoutMsnumber30_000
fetchtypeof fetchglobalThis.fetch

client.solveTurnstile(params)

Solves a Cloudflare Turnstile challenge. Returns a SolveResult.

ParamTypeRequired
urlstringyes
sitekeystringyes
actionstringno
cdatastringno

SolveClient.signup(options?)

Static method. Creates a fresh API key with 100 free calls. Safe to call from an autonomous agent.

License

MIT

Keywords

captcha

FAQs

Package last updated on 18 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts