Developer Documentation

Build with the Paygentic API

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.cloud

Authentication

Authorization: Bearer pg_live_sk_...

Quick start

# 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"}'

Core endpoints

An overview of the most-used endpoints. The full reference (33 endpoints) is available inside the dashboard.

Wallets

POST/v1/wallets
GET/v1/wallets
POST/v1/wallets/:id/add-funds

Payments & Transfers

POST/v1/payments
POST/v1/payments/:id/approve
POST/v1/transfer

Analytics & Audit

GET/v1/stats
GET/v1/audit

Every 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.