get
https://api.neutron.me/api/v2/transaction/
Retrieve details of a specific transaction.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve the full details and current status of a specific transaction. This is the same as Get transaction status — both endpoints return identical data.
Example Request
curl https://api.neutron.me/api/v2/transaction/5e25d2f4-9bca-4b7a-a1ad-2cf056100cb6 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"Example Response
{
"txnId": "5e25d2f4-9bca-4b7a-a1ad-2cf056100cb6",
"accountId": "ne01-abc123def456",
"txnState": "completed",
"sourceReq": {
"ccy": "BTC",
"method": "neutronpay",
"amtRequested": 0.001,
"amtSettled": 0.001,
"neutronpayFees": 0,
"networkFees": 0.0000005,
"reqStatus": "2"
},
"destReq": {
"ccy": "BTC",
"method": "on-chain",
"amtRequested": 0.001,
"amtSettled": 0.001,
"reqStatus": "2",
"reqDetails": {
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh"
}
},
"fxRate": 1,
"createdAt": 1770342000000
}Use Cases
- Check payment status — Has the Lightning invoice been paid?
- Verify completion — Did the on-chain send confirm?
- Get settled amounts — What was the actual amount after fees?
- Debug failures — What state did the transaction end up in?
Related
- Get transaction status — Same endpoint, alternate spec
- List transactions — Query multiple transactions
- Transaction Status Types — All states explained
