Skip to main content

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.

Provides detailed cryptographic proof and a human-readable payload representing a specific employee’s payment item from a specific payroll batch. Endpoint GET /api/mpp/payslips/[runId]/[employeeId] Pricing $0.02 per call — Low computational overhead serving pre-calculated ledger entries. Payment type Single charge — Usually triggered sequentially via an agent generating monthly compliance reports for an employer. Request
// Dynamic Route Parameters: 
// runId (Payroll Run UUID)
// employeeId (Employee UUID)
{}
Response
{
  "runId": "run-uuid",
  "employeeInfo": {
    "wallet": "0xEmployeeWallet",
    "countryCode": "US"
  },
  "grossAmount": "6100.00",
  "netAmount": "5000.00",
  "txHash": "0x123abc...",
  "status": "confirmed"
}
Example
npx agentcash get https://remlo.xyz/api/mpp/payslips/batch-123/emp-456
Notes Used intrinsically by the Employee Portal to render PDF payslips for tax compliance. The agent can use this payload to build custom .docx or .pdf templates locally.

Authorization

Discloses PII — caller must be one of:
  • Employer (Privy) — owner of the payroll run, OR
  • Tier 1 / Tier 2 agent — authorized by that employer, OR
  • Employee (Privy) — whose user_id matches the requested employeeId.
Without principal proof the request is 401, even if payment was paid. See Authentication.