Skip to main content
GET
/
platform
/
v1
/
transactions
/
{id}
Get a transaction
curl --request GET \
  --url https://api.moonpay.com/platform/v1/transactions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "status": "completed",
    "source": {
      "amount": "<string>",
      "asset": {
        "code": "USD"
      }
    },
    "destination": {
      "amount": "<string>",
      "asset": {
        "code": "<string>"
      }
    },
    "fees": {
      "network": {
        "amount": "<string>",
        "asset": {
          "code": "USD"
        }
      },
      "moonpay": {
        "amount": "<string>",
        "asset": {
          "code": "USD"
        }
      },
      "partner": {
        "amount": "<string>",
        "asset": {
          "code": "USD"
        }
      }
    },
    "wallet": {
      "address": "0x1234567890123456789012345678901234567890"
    },
    "customer": {
      "id": "<string>"
    },
    "paymentMethod": {
      "type": "apple_pay"
    },
    "stages": [
      {
        "kind": "ordering",
        "name": "<string>",
        "status": "not_started",
        "failureReason": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header using an access token.

Example: Authorization: Bearer <accessToken>

Path Parameters

id
string
required

The MoonPay ID of the transaction.

Response

The request has succeeded.

data
object
required

Transaction with lifecycle stages showing step-by-step progress.