> For the complete documentation index, see [llms.txt](https://book.just.money/jmguide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.just.money/jmguide/justmoney-pay/api-documentation/get-order-details.md).

# Get Order Details

You can fetch all the details of the order from here.\
This does not validate the confirmation of the blockchain.\
If you want to see if the payment transaction is confirmed you should use getStatusByHash instead.

**Endpoint:** [**https://api-pay.just.money/v1/checkout/getOrderByHash/:hash**](https://api-pay.just.money/v1/checkout/getOrderByHash/:hash)

**Request Type:&#x20;**<mark style="color:blue;">**GET**</mark>

### **Returns:**

```json
{
  "id": "our order id",
  "wallet_evm": "address",
  "wallet_tron": "address",
  "src": "your source",
  "returnUrl": "your return url",
  "statusHookUrl": "your status hook url",
  "totalAmount": "total amount of the order",
  "orderId": "your order id",
  "hash": "hash that we generated",
  "network": "network of payment (user already paid)",|
  "tokenPaidWith": "token that user used for the payment",
  "currency": "USD",
  "transactionHash": "transaction hash in blockchain (user already paid)",
  "status": "CREATED | PROCESSING | COMPLETED",
  "createdAt": "Date and time of the creation",
  "updatedAt": "Date and time of the last update"
}
```
