Financial primitives for AI agents.
Embed retirement accounts in your app or agent. Initiate PRActicle™ portable Roth IRA signups over REST or MCP — live today, no API keys — with a built-in human-confirm step and partner attribution from day one. Advisory services and partner revenue share launch upon RIA registration approval.
See the whole flow — sandbox to production.
Register a test partner, start a sandbox signup, watch the status auto-progress, and hit the same five tools over MCP. Tap play for sound.
Start a retirement signup in 5 lines.
Initiate the signup, hand the confirm link to your user, poll until they say yes. Live in production right now.
// LIVE today — no API key needed
import { Gigaverse } from "gigaverse"; // npm install gigaverse
const gv = new Gigaverse({ partnerId: "acme-gig-app" });
// Initiate a Roth IRA signup for your user
const s = await gv.startSignup({
email: "[email protected]",
name: "Jane",
platforms: ["uber", "doordash"],
});
// → hand s.signup_url to the user; they confirm personally
// Poll until the human confirms
const { status } = await gv.getSignupStatus(s.signup_id);
// "initiated" → "waitlist_joined" → "account_opened" (post-launch)
// Educational Roth MAGI check
const elig = await gv.checkRothEligibility({
filingStatus: "single",
magi: 120_000,
});TypeScript SDK + CLI: npm install gigaverse · npx gigaverse init · MCP server live at gigaverse.ai/api/mcp · Agent guide: /agents
Built for AI agents from day one.
MCP Server — LIVE
Remote MCP at https://gigaverse.ai/api/mcp (streamable HTTP, no auth). Works with Claude, GPT, LangChain, and any MCP client. Local stdio proxy: npx gigaverse mcp.
Human-Confirm by Design
Agents initiate signups; the account owner personally confirms via the returned link. Enrollment, KYC, and agreements are structurally reserved to the human.
Live Primitives
start_signup · get_signup_status · check_roth_eligibility · get_practicle_info — REST + MCP, OpenAPI 3.1 spec at /api/openapi.json. Partner attribution built in.
No-PII Surface
The public API accepts name + email only. Identity (KYC) data is collected exclusively inside the user's authenticated app session — never through agent endpoints.
Use the REST API directly.
Every MCP primitive is also exposed as a clean REST endpoint with OpenAPI 3.1 spec and webhooks.
curl -X POST https://gigaverse.ai/api/agent/signups \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"name": "Jane",
"platforms": ["uber", "doordash"],
"partner_id": "acme-gig-app"
}'{
"signup_id": "gv_sgn_k2x91m4a7q",
"status": "initiated",
"partner_id": "acme-gig-app",
"signup_url": "https://gigaverse.ai/start?sid=gv_sgn_k2x91m4a7q",
"status_url": "https://gigaverse.ai/api/agent/signups/gv_sgn_k2x91m4a7q",
"human_action_required": "The account owner must personally open signup_url to confirm.",
"disclosures": "Gigaverse AI, Inc. is a financial technology company — not a bank..."
}REST Platform Highlights
Live Today, No Keys
The agent endpoints are live in production with no auth keys required — initiate a signup with one curl.
Human-Confirm Built In
TLS everywhere; agents never touch identity data. The confirm step is structurally reserved to the account owner.
RESTful & Typed
Clean REST with an OpenAPI 3.1 spec at /api/openapi.json. TypeScript SDK + CLI on npm (`gigaverse`).
Test From Your Terminal
npx gigaverse signup --email [email protected] — full end-to-end test of the signup flow in seconds.
API Reference
Five core APIs covering the entire gig worker financial lifecycle.
Signups API — LIVE
Initiate retirement-account signups for your users (human-confirm flow), poll status, attribute to your partner_id. Idempotent, no auth keys.
/api/agent/signupsEligibility API — LIVE
Educational 2026 Roth IRA MAGI phase-out estimates. Pure function — stores nothing, never asks for identity data.
/api/agent/eligibilityProduct API — LIVE
PRActicle™ product information: pricing, custodian disclosure, launch status, links. Cacheable.
/api/agent/productPayments API — Roadmap
Instant payouts, transaction status, payment methods. Ships with the app's public launch.
/v1/payments (roadmap)Webhooks — Roadmap
Push notifications for signup confirmations and account events, replacing status polling.
/v1/webhooks (roadmap)Official SDKs
Get started in minutes with our official client libraries.
Python
pip install gigaverseNode.js
npm i @gigaverse/sdkGo
go get gigaverse.ai/sdkRuby
gem install gigaverseReady to Integrate?
Sign up for API access. Sandbox environment is free — no credit card required.