Skip to main content
GET
/
api
/
v3
/
payments
/
{id}
Get payment by ID
curl --request GET \
  --url https://live.launcx.com/api/v3/payments/{id} \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-timestamp: <x-timestamp>'
{
  "amount": "<string>",
  "client_id": "<string>",
  "client_wallet_name": "<string>",
  "created_at": "2024-01-15T14:30:45Z",
  "currency": "<string>",
  "expired_at": "2024-01-15T14:30:45Z",
  "id": "<string>",
  "net_amount": "<string>",
  "paid_at": "2024-01-15T14:30:45Z",
  "payer_id": "<string>",
  "platform_fee": "<string>",
  "retrieval_reference_no": "<string>",
  "settled_at": "2024-01-15T14:30:45Z",
  "status": "<string>",
  "updated_at": "2024-01-15T14:30:45Z"
}

Headers

x-api-key
string
required

Client API Key

x-timestamp
string
required

Unix timestamp in milliseconds

Path Parameters

id
string
required

Payment ID (UUID)

Response

OK

amount
string
client_id
string
client_wallet_name
string
created_at
string

ISO 8601 UTC

Example:

"2024-01-15T14:30:45Z"

currency
string
expired_at
string

ISO 8601 UTC

Example:

"2024-01-15T14:30:45Z"

id
string
net_amount
string
paid_at
string

ISO 8601 UTC, nullable

Example:

"2024-01-15T14:30:45Z"

payer_id
string
platform_fee
string
retrieval_reference_no
string
settled_at
string

ISO 8601 UTC, nullable

Example:

"2024-01-15T14:30:45Z"

status
string
updated_at
string

ISO 8601 UTC

Example:

"2024-01-15T14:30:45Z"