AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Captchasonic Balance

skill-captcha-sonic-agent-skills-captchasonic-balance · by Captcha-Sonic

Check your CaptchaSonic account balance and verify the API key is working. Use when you want to see remaining credits or confirm connectivity.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-captcha-sonic-agent-skills-captchasonic-balance

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-captcha-sonic-agent-skills-captchasonic-balance)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Captchasonic Balance? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Check CaptchaSonic Balance

Use the CaptchaSonic MCP get_balance tool to check your account credits.

Prerequisites

The CaptchaSonic MCP server must be connected with a valid SONIC_API_KEY. If not set up, use the captchasonic-setup skill first.

Step 1: Call the MCP Tool

Use the get_balance MCP tool (no arguments needed — the API key is set via environment variable):

Tool: get_balance
Arguments: {}

Step 2: Interpret the Result

The tool returns:

  • balance — your remaining credits in USD (e.g., $12.5400)
  • status — account status
  • errorId0 means success

Step 3: Report to the User

Present the balance clearly:

  • If balance is healthy: "Your CaptchaSonic balance is $12.54 USD."
  • If balance is low (under $1.00): "⚠️ Your balance is $0.32 USD — consider topping up at captchasonic.com."
  • If balance is zero: "❌ Your balance is $0.00 — add credits at captchasonic.com to continue solving captchas."

Error Handling

| Error | Meaning | Fix | |---|---|---| | "SONICAPIKEY is not set" | MCP server doesn't have the API key | Re-add the MCP server with --env SONIC_API_KEY=sonic_xxxx | | errorId: 1 | Invalid API key | Check your key at dashboard.captchasonic.com | | Connection error | MCP server not running | Run npx -y @captchasonic/mcp-server or use the setup skill |

Fallback: Python SDK

If the MCP server is not available:

pip install captchasonic
from captchasonic import SonicClient
import os

client = SonicClient(api_key=os.environ.get("SONIC_API_KEY", "sonic_xxxx"))
balance = client.get_balance()
print(f"Balance: ${balance:.4f} USD")
client.close()

Fallback: grpcurl

grpcurl -d '{"apiKey":"sonic_xxxx"}' \
  api.captchasonic.com:443 captchasonic.v1.SonicService/GetBalance

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.