Get Transaction
Look up the status and details of a transaction. By default, this method only returns data from ledger versions that have been validated by consensus.
Warning: XRP-API is early alpha software. API methods and data formats are likely to change frequently in ways that break backwards compatibility.
Request Format
GET /transactions/{transaction_id}
This API method uses the following path parameters:
Field | Value | Required? | Description |
---|---|---|---|
transaction_id |
String (TransactionID) | Required | The ID of the transaction to query. |
Response Formats
400 Bad Request
This error case indicates that the request was not properly formatted.
Media type: application/json
Formatted as a RippleAPIError
The response uses the following fields:
Field | Type | Required? | Description |
---|---|---|---|
errors |
Array of ErrorItem | May be omitted | A list of errors that occurred when processing this request. |
message |
String | May be omitted | A human-readable error message summarizing the problem(s) that occurred. |
200 OK
Transaction object
Media type: application/json
Formatted as a Transaction
404 Not Found
Not found
Media type: application/json
Formatted as a RippleAPIError
The response uses the following fields:
Field | Type | Required? | Description |
---|---|---|---|
errors |
Array of ErrorItem | May be omitted | A list of errors that occurred when processing this request. |
message |
String | May be omitted | A human-readable error message summarizing the problem(s) that occurred. |