Skip to main content
GET
/
account
/
payments
List billing payments
curl --request GET \
  --url https://api.veryfront.com/account/payments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "status": "<string>",
      "paid": true,
      "amount": 123,
      "currency": "<string>",
      "created_at": "<string>",
      "description": "<string>",
      "receipt_url": "<string>",
      "invoice_id": "<string>",
      "payment_intent_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100

Response

Billing payments

data
object[]
required