$5
per call · USD Coin on Base
Fund a ZenSched org's prepaid balance with USDC. ZenSched schedules field workers, verifies GPS check-ins, collects form data and exports timesheets through an MCP server (https://mcp.zensched.com/mcp). Pay here, then call the MCP tools with your zsc_ API key — the balance covers metered tools: verification $0.10, geocode $0.03, pin_refine $0.10, form_basic $0.05, form_media $0.15, worker_invite $0.25, timesheet_processed $0.10. Default $5 activation deposit; set amount_usd (1–500) to top up.
Endpoint
GET https://mcp.zensched.com/x402/fund2
Calls / 30d
2
Unique payers / 30d
Sep 10
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://mcp.zensched.com/x402/fund", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://mcp.zensched.com/x402/fund?amount_usd=5&org_id=0" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"amount_cents": 500,
"amount_usd": "$5.00",
"balance_cents": 500,
"network": "eip155:8453",
"next": "Call MCP tools at https://mcp.zensched.com/mcp with Authorization: Bearer zsc_…",
"org_id": 12345,
"status": "credited",
"transaction": "0x…"
}Payment details
0x081d7f97ca4478dac465569e1fe3f5846ad598ddUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from ZenSched & similar services
ZenSched · Geocode
mcp.zensched.com
Street address → GPS check-in pin. Geocodes the address, upgrades to the Google Places establishment pin when it is the same site, and returns lat/lng, pin_quality, IANA timezone and map links. Same resolver ZenSched uses for location_create.
ZenSched · Tools Brand Create
mcp.zensched.com
ZenSched `brand_create` — Create a brand — a section for unrelated lines of work (different clients/campaigns). Each brand points at a talent policy (geofencing, reminders, required forms). Optional color (#rrggbb). Pay-per-call $0.01 USDC; the paying wallet owns the org (auto-provisioned on first call). Catalog: https://mcp.zensched.com/x402/tools
ZenSched · Tools Account GET
mcp.zensched.com
ZenSched `account_get` — Org profile: name, tier, object counts, payroll period, billing state. Requires a connected OAuth token or Bearer zsc_ key. Pay-per-call $0.01 USDC; the paying wallet owns the org (auto-provisioned on first call). Catalog: https://mcp.zensched.com/x402/tools