Quick Start
Get your API keys
Your API requests are authenticated using Bearer Tokens. Any request that doesn't include an Bearer Tokens will return an error.
You can generate a Bearer Token using the Authentication methods.
AuthenticationMake your first request
To make your first request, send an authenticated request to the orders endpoint. This will return an order, which is nice.
Get Order details by UUID
GET https://stage.api.payments.depay.us/payins/orders/{uuid}
Get an existing order by UUID
Query Parameters
Name
Type
Description
uuid*
string
Order unique identifier
Headers
Name
Type
Description
Authorization*
String
Bearer Token
{
"order_uuid": "64579618-7013-455b-b525-5ff9d5d2b8f5",
"total": "10",
"destination_wallet": "0x7f533b5fbf6ef86c3b7df76cc27fc67744a9a760",
"status": "in_progress"
}{
"statusCode": 404,
"message": "Not Found"
}Last updated