Skip to main content
GET
/
payments
curl -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/payments?event_id=EVENT_ID&from=2025-01-01"
{
  "data": [
    {
      "id": "<string>",
      "status": {},
      "currency": {},
      "gross_amount": {},
      "net_amount": {},
      "service_fee": {},
      "total_discount": {},
      "quantity": {},
      "event_id": {},
      "product_id": {},
      "form_id": {},
      "contact_user_id": {},
      "customer_email": {},
      "application_id": {},
      "promo_code": {},
      "billing_reason": {},
      "stripe_payment_id": {},
      "created_at": {},
      "updated_at": {}
    }
  ]
}

List Payments

Returns a paginated list of payments. Defaults to status succeeded — pass status to include other states. Required scope: payments:read

Query Parameters

page
integer
default:"1"
page_size
integer
default:"50"
Maximum: 200.
status
string
default:"succeeded"
Comma-separated. Allowed: succeeded, pending, refunded, failed, checkout_started, authorized, authorization_expired.
event_id
string
product_id
string
form_id
string
from
string
ISO 8601 timestamp. Returns payments created on or after this time.
to
string
ISO 8601 timestamp. Returns payments created on or before this time.

Response

data
array
curl -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/payments?event_id=EVENT_ID&from=2025-01-01"