---
title: "Fetch Transaction Info"
method: GET
path: "/charges/{chargeId}"
tags: ["Transactions"]
---

# Fetch Transaction Info

`GET /charges/{chargeId}`

This API enables you to retrieve detailed information about a specific charge by providing the charge ID.<br>It is designed to give you a comprehensive view of transaction details.<br><br>

## Path parameters

- `chargeId` string, required

## Headers

- `Content-Type` string
- `Authorization` string

## Response `200`

Successful response

- object
  - `status` 'confirmation_required' | 'captured' | 'refund_initiated' | 'processing' | 'failed' | 'refunded'
  - `id` string
  - `amount` number
  - `amount_currency` string
  - `refund_amount` number
  - `refund_status` string
  - `billing_descriptor` string
  - `custom_data` object
  - `created_date` string
  - `subscription_id` string — Value is set for subscriptions only. For one-time payments, this will be null.
  - `next_payment_date` string — Value is set for subscriptions only. For one-time payments, this will be null.
  - `settlement_amount` number
  - `settlement_currency` string
  - `settlement_date` string
  - `customer_details` object
    - `name` string
    - `email` string
    - `phone_number` string
    - `comment` string
  - `payment_method` object
    - `type` 'CREDIT MASTERCARD' | 'CREDIT VISA' | 'CREDIT AMERICAN EXPRESS' | 'DEBIT MASTERCARD' | 'DEBIT VISA' | 'DEBIT AMERICAN EXPRESS'
    - `card_holder_name` string
    - `card_last4` string
    - `origin` string
  - `error_code` string
  - `error_message` string

## Other responses

- `403` — Unauthorised
- `404` — Not Found
- `500` — Unexpected error

---

[API](https://skmtc.net/mamopay/apis/payments.md) · [All operations](https://skmtc.net/mamopay/apis/payments/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mamopay/payments/revisions/65bb3871a425/schema)
