Four ways to use Remlo. Pick whichever matches what you’re building.Documentation Index
Fetch the complete documentation index at: https://docs.remlo.xyz/llms.txt
Use this file to discover all available pages before exploring further.
I want to run payroll for my company
The fastest path. No code.- Sign up at remlo.xyz. Email or wallet login.
- Add your company name and admin wallet address. The dashboard creates an on-chain employer account in
EmployeeRegistry. - Fund your treasury: deposit pathUSD on Tempo via the dashboard’s on-chain deposit widget, or send SPL USDC to the Solana wallet shown in your treasury page.
- Add employees. They receive a branded invite email with a Bridge KYC link. Once verified, they’re payroll ready.
- Click “Run Payroll”. Pick chain (Tempo or Solana), select employees, set amounts, review, execute. Tempo payroll lands in under a second; Solana lands within 1-2 seconds.
YieldRouter.
I want my agent to call Remlo’s APIs
Remlo’s MPP and x402 endpoints accept payment in USDC on Tempo, Base, or Solana. Use AgentCash for the easiest setup.- Install AgentCash.
npx -y agentcash@latest onboardprovisions a wallet on every supported chain. - Fund the chain you want to pay from. The deposit link printed by
agentcash list_accountsopens the right faucet or on-ramp. - Discover Remlo’s endpoints:
npx -y agentcash@latest discover https://www.remlo.xyz. - Call any endpoint:
npx -y agentcash@latest fetch https://www.remlo.xyz/api/mpp/treasury/yield-rates. AgentCash handles the 402 challenge, signs the payment proof, and retries automatically.
@x402/core + @x402/evm + @x402/svm packages directly, or build your own client following the Authentication guide.
I want to integrate Remlo into a custom app
You’re building something that uses payroll, escrow, or reputation as a building block.- Read the MPP API Overview for the full endpoint catalogue and pricing.
- Read Multi-Rail Payments for the canonical payment flow with code samples.
- Pick the endpoints you need. Most reads are 0.05; agent-to-agent payments are 1.00.
- Implement the 402 retry loop or use a library that does it for you. The
@x402/coreSDK works in Node, browser, and Cloudflare Workers.
I want to run Remlo on my own infrastructure
Remlo is open source under MIT.- Clone the repo.
git clone https://github.com/winsznx/remlo. - Install dependencies.
pnpm install. - Set up the prerequisites:
- A Privy app (email + SMS + wallet login enabled).
- A Supabase project; apply every migration under
db/migrations/. - An Anthropic API key for the AI agent and validators.
- A Bridge sandbox key for KYC links (optional but employee onboarding stalls without it).
- A Resend account for transactional email.
- Copy
.env.local.exampleto.env.localand fill in the values. See Environment Variables for the full list. - Run
pnpm dev. The app boots athttp://localhost:3000.