A single REST API to give AI agents wallets, spending policies, payments, and audit trails. Start in the live demo โ no setup required.
Beta โ endpoints and responses may change. Funds are simulated; no real money moves.
Base URL
https://api.paygentic.cloudAuthentication
Authorization: Bearer pg_live_sk_...# 1. Create an agent wallet
curl -X POST https://api.paygentic.cloud/v1/wallets \
-H "Authorization: Bearer pg_live_sk_..." \
-d '{"agent_id":"research-agent", "name":"Research Agent"}'
# 2. Set a spending policy
curl -X POST https://api.paygentic.cloud/v1/policies \
-d '{"require_approval_above":10000, "daily_limit":50000}'
# 3. Move money between agents
curl -X POST https://api.paygentic.cloud/v1/transfer \
-d '{"to":"wallet_xyz", "amount":500, "purpose":"API usage"}'An overview of the most-used endpoints. The full reference (33 endpoints) is available inside the dashboard.
/v1/wallets/v1/wallets/v1/wallets/:id/add-funds/v1/payments/v1/payments/:id/approve/v1/transfer/v1/stats/v1/auditEvery call is governed and audited
Spending policies are enforced at the payment layer, and every transaction is written to an immutable audit log. See the compliance overview.