Skip to main content
GET
/
payments
/
{id}
Get Transaction
curl --request GET \
  --url https://api.example.com/payments/{id}

Request

Replace {id} with the transaction UUID. The transaction must belong to the authenticated agent.
curl https://api.midasprotocol.org/payments/tx-uuid \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "id": "uuid",
  "type": "PAYMENT",
  "direction": "outgoing",
  "amount": "25.00",
  "currency": "USDC",
  "rail": "internal",
  "fees": "0.50",
  "status": "COMPLETED",
  "metadata": { "reason": "Service payment" },
  "createdAt": "2026-01-01T00:00:00.000Z",
  "completedAt": "2026-01-01T00:00:00.000Z"
}