GET
/
payments
/
{lago_id}
curl --request GET \
  --url https://api.getlago.com/api/v1/payments/{lago_id} \
  --header 'Authorization: Bearer <token>'
{
  "lago_id": "4cf085a7-c196-4f07-a543-97c50ec6e8b2",
  "invoice_ids": [
    "486b147a-02a1-4ccf-8603-f3541fc25e7a"
  ],
  "amount_cents": 100,
  "amount_currency": "USD",
  "payment_status": "succeeded",
  "type": "manual",
  "reference": "ref1",
  "external_payment_id": null,
  "created_at": "2025-02-20T00:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

lago_id
string
required

Unique identifier of the payment.

Example:

"f4a842d6-4bde-11ec-81d3-0242ac130003"

Response

200
application/json
Payment details
lago_id
string

The unique identifier of the payment, created by Lago.

Example:

"4cf085a7-c196-4f07-a543-97c50ec6e8b2"

invoice_ids
string[]

List of invoice IDs associated with the payment.

amount_cents
integer

The amount of the payment in cents.

Example:

100

amount_currency
string

The currency of the payment amount.

Example:

"USD"

payment_status
string

The current status of the payment.

Example:

"succeeded"

type
string

The type of payment.

Example:

"manual"

reference
string

Reference for the payment.

Example:

"ref1"

external_payment_id
string | null

External identifier for the payment (if applicable).

Example:

null

created_at
string

Timestamp when the payment was created.

Example:

"2025-02-20T00:00:00Z"