list_payment_accounts
const url = 'https://app.everruns.com/api/v1/payments/accounts';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/payments/accountsList payment accounts.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Filter to a single owner class (user, agent identity, or organization).
Filter to a specific owner principal id.
Responses
Section titled “ Responses ”List payment accounts
A payment account — the org-scoped source of funds for paid agent calls. Each account binds an owning principal (user, agent identity, or org) to one settlement rail and tracks its provisioning lifecycle.
object
Timestamp when this account was created (RFC 3339).
Prefixed public identifier. See ID Schema.
Human-readable label for this account. Safe to render in user-facing messages.
Free-form metadata attached to this account (caller-defined; opaque to the platform).
Owning organization’s prefixed public identifier.
Prefixed identifier of the owning principal (e.g. user_…, agent_…, org_…).
Principal class that owns this account (user, agent identity, or organization).
Public address on the rail (chain address, account number, etc.). Optional; None until provisioning completes.
Settlement rail this account operates on.
Current lifecycle status of this account.
Timestamp when this account was last updated (RFC 3339).
Example
[ { "created_at": "2026-04-01T10:00:00Z", "id": "payacct_01933b5a00007000800000000000001", "label": "Production USDC ops wallet", "organization_id": "org_01933b5a000070008000000000000001", "owner_id": "agent_01933b5a000070008000000000000001", "owner_type": "user", "public_address": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "rail": "mpp_tempo", "status": "active", "updated_at": "2026-05-20T14:00:00Z" }]