Skip to content

list_payment_accounts

GET
/v1/payments/accounts
curl --request GET \
--url https://app.everruns.com/api/v1/payments/accounts

List payment accounts.

owner_type
string | null

Filter to a single owner class (user, agent identity, or organization).

owner_id
string | null

Filter to a specific owner principal id.

List payment accounts

Media type application/json
Array<object>

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
created_at
required

Timestamp when this account was created (RFC 3339).

string format: date-time
id
required

Prefixed public identifier. See ID Schema.

string
/^payacct_[0-9a-f]{32}$/
label
required

Human-readable label for this account. Safe to render in user-facing messages.

string
metadata
required

Free-form metadata attached to this account (caller-defined; opaque to the platform).

organization_id
required

Owning organization’s prefixed public identifier.

string
owner_id
required

Prefixed identifier of the owning principal (e.g. user_…, agent_…, org_…).

string
owner_type
required

Principal class that owns this account (user, agent identity, or organization).

string
Allowed values: user agent_identity organization
public_address

Public address on the rail (chain address, account number, etc.). Optional; None until provisioning completes.

string | null
rail
required

Settlement rail this account operates on.

string
Allowed values: mpp_tempo x402_base
status
required

Current lifecycle status of this account.

string
Allowed values: active disabled pending succeeded failed released
updated_at
required

Timestamp when this account was last updated (RFC 3339).

string format: date-time
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"
}
]