getTransactionDetails
The getTransactionDetails query returns complete information about a specific transaction associated with the provided API key, including blockchain status, payment address, token amount, and network.
π Endpoint
URL: https://argonpay.onrender.com/graphql
Method: POST
Content-Type: application/json
π Query Structure
query GetTransactionDetails($apiKey: String!, $transactionId: String!) {
getTransactionDetails(apiKey: $apiKey, transactionId: $transactionId) {
code
message
transaction {
transactionId
amount
amountInToken
payAddress
network
seedPhrase
privateKey
recipientAddress
status
adminTransferred
}
}
}π₯ Parameters
Name
Type
Required
Description
apiKey
String
β
Your ArgonPay API key
transactionId
String
β
The transaction ID to fetch details for
β
Successful Response
π« Error Codes
Code
Description
200
Transaction data retrieved successfully
401
Invalid API key
404
Transaction not found
500
Server error
π§ͺ Code Examples
Python Example
JavaScript Example
Last updated