$0.01
per call · USD Coin on Base
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
Endpoint
POST https://mcp.zensched.com/x402/tools/brand_create2
Calls / 30d
1
Unique payers / 30d
Sep 2
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/tools/brand_create", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"color": "#2d6cdf",
"name": "Acme Demo Team"
}),
});
const data = await res.json();curl -X POST \
"https://mcp.zensched.com/x402/tools/brand_create" \
-H "Content-Type: application/json" \
-d '{"color":"#2d6cdf","name":"Acme Demo Team"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"org": {
"org_id": 12345,
"provisioned": false,
"wallet": "0x…"
},
"payment": {
"amount_usd": "$0.01",
"network": "eip155:8453",
"payer": "0x…",
"transaction": "0x…"
},
"result": {
"note": "tool-specific JSON result",
"status": "ok"
},
"tool": "brand_create"
}Payment details
0x081d7f97ca4478dac465569e1fe3f5846ad598ddUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Developer Tools 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 · Fund
mcp.zensched.com
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.
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