list_payment_attempts
const url = 'https://app.everruns.com/api/v1/payments/attempts';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/attemptsList recent payment attempts (operator audit view).
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Filter to attempts originating from a specific session.
Maximum number of attempts returned. Defaults to 50.
Responses
Section titled “ Responses ”List payment attempts
A single paid-call settlement attempt — the durable record of one authorization+settlement cycle issued through the payment authority. Persisted regardless of outcome so failed attempts remain auditable.
object
Amount actually charged (USD).
Capability ID that originated this paid call.
Timestamp when this attempt was created (RFC 3339).
ISO 4217 currency code for the charge (typically USD).
Human-readable error message when status is failed; None otherwise.
Prefixed public identifier. See ID Schema.
Capability-specific operation name that originated this paid call.
Owning organization’s prefixed public identifier.
Rail-specific receipt payload (transaction id, block reference, signature, etc.).
Stable hash of the outbound request used to detect replays. None when not applicable.
Session that initiated the paid call, if any.
Current lifecycle status of this attempt.
Destination URL of the paid outbound call.
Timestamp when this attempt was last updated (RFC 3339).
Example
[ { "amount_usd": 0.014, "capability": "paid_search", "created_at": "2026-05-25T10:14:00Z", "currency": "USD", "error_message": "rail.insufficient_funds: settled balance below minimum", "id": "payatt_01933b5a00007000800000000000001", "operation": "search.query", "organization_id": "org_01933b5a000070008000000000000001", "payment_account_id": "payacct_01933b5a00007000800000000000001", "rail": "mpp_tempo", "request_hash": "sha256:9f1e2a4c3d5b6e8a0b2c4d6e8f0a1b3c5d7e9f0a1b2c4d6e8f0a1b2c4d6e8f0a", "session_id": "session_01933b5a000070008000000000000001", "status": "active", "target_url": "https://api.example.com/v1/search", "updated_at": "2026-05-25T10:14:02Z" }]