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 an existing order
GET
https://api.depay.us/orders/{order_id}
Get an existing order by UUID
Query Parameters
Name
Type
Description
order_id*
string
Order identifier
Headers
Name
Type
Description
Authentication*
string
Bearer Token
{
"order_uuid": "64579618-7013-455b-b525-5ff9d5d2b8f5",
"total": "10",
"destination_wallet": "0x7f533b5fbf6ef86c3b7df76cc27fc67744a9a760",
"status": "in_progress"
}
Take a look at how you might call this method via curl or HTTP
:
curl
--location 'https://api.depay.us/orders/64579618-7013-455b-b525-5ff9d5d2b8f5'
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJtYXJjZWxvIiwiaWF0IjoxNjgxMjk4ODk2LCJleHAiOjE2ODEzMDI0OTZ9.xAYxas66AoqVZF1YE5GOQ91vrQ4yruQsNIYtSsRqF8E'
Last updated