Back to home

Documentation

Learn how to build on top of the world's first AI-native payroll network.

The Remlo API

Our API follows standard REST principles and returns JSON-encoded responses. Some critical endpoints are protected by the MPP (Micro-Payment Protocol) and require on-chain vouchers for authorization.

Authentication

Most endpoints require an API key passed in the Authorization header:

Authorization: Bearer rmlo_agent_xxxxxxxxxxxx

Executing Payroll (MPP)

To execute a payroll batch, your agent must handle the HTTP 402 Payment Required challenge:

Example Request
curl -X POST https://api.remlo.xyz/v1/payroll/execute \
  -H "Authorization: Bearer $RMLO_API_KEY" \
  -d '{ "batchId": "batch_123" }'

Note: Standard execution costs $1.00 USD. Ensure your agent has a sufficient Tempo voucher balance.

Rate Limits

Free tier users are limited to 1,000 requests per day. Pro and Enterprise tiers have significantly higher limits suitable for high-volume automation.