Get order
curl --request GET \
--url https://vibe-api.liquidramp.com/v1/orders/{reference} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://vibe-api.liquidramp.com/v1/orders/{reference}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://vibe-api.liquidramp.com/v1/orders/{reference}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://vibe-api.liquidramp.com/v1/orders/{reference}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://vibe-api.liquidramp.com/v1/orders/{reference}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://vibe-api.liquidramp.com/v1/orders/{reference}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://vibe-api.liquidramp.com/v1/orders/{reference}")
.header("Authorization", "Bearer <token>")
.asString();using RestSharp;
var options = new RestClientOptions("https://vibe-api.liquidramp.com/v1/orders/{reference}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"status": true,
"message": "<string>",
"data": {
"reference": "<string>",
"merchant_reference": "<string>",
"customer_reference": "<string>",
"type": "onramp",
"from": {
"currency": "<string>",
"network": "<string>",
"amount": 123
},
"to": {
"currency": "<string>",
"network": "<string>",
"amount": 123
},
"pricing": {
"base_currency": "<string>",
"quote_currency": "<string>",
"exchange_rate": 123
},
"fee": {
"currency": "<string>",
"network_fee": 123,
"protocol_fee": 123,
"partner_fee": 123,
"vat": 123,
"total": 123,
"fee_in_rate": true
},
"metadata": {},
"amount_paid": 123,
"amount_settled": 123,
"amount_refunded": 123,
"percentage_settled": 123,
"status": "initiated",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"recipient": {
"institution_code": "<string>",
"account_number": "<string>",
"account_name": "<string>",
"memo": "<string>"
},
"payin": {
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"tx_reference": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"paid_at": "2023-11-07T05:31:56Z"
},
"payout": [
{
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"percentage": 123,
"tx_reference": "<string>",
"paid_at": "2023-11-07T05:31:56Z"
}
],
"refund": {
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"tx_reference": "<string>",
"refunded_at": "2023-11-07T05:31:56Z"
},
"timeline": [
{
"group": "<string>",
"event": "<string>",
"details": "<unknown>",
"created_at": "2023-11-07T05:31:56Z"
}
]
},
"meta": {
"total": 123,
"per_page": 123,
"current_page": 123,
"last_page": 123
}
}{
"status": false,
"message": "<string>",
"code": "E_BADREQUEST"
}Orders
Get order
Returns order detail including payin, recipient, and optional refund.
payout and timeline are omitted unless you pass include=payout, include=timeline, or include=payout,timeline.
GET
/
v1
/
orders
/
{reference}
Get order
curl --request GET \
--url https://vibe-api.liquidramp.com/v1/orders/{reference} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://vibe-api.liquidramp.com/v1/orders/{reference}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://vibe-api.liquidramp.com/v1/orders/{reference}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://vibe-api.liquidramp.com/v1/orders/{reference}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://vibe-api.liquidramp.com/v1/orders/{reference}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://vibe-api.liquidramp.com/v1/orders/{reference}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://vibe-api.liquidramp.com/v1/orders/{reference}")
.header("Authorization", "Bearer <token>")
.asString();using RestSharp;
var options = new RestClientOptions("https://vibe-api.liquidramp.com/v1/orders/{reference}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"status": true,
"message": "<string>",
"data": {
"reference": "<string>",
"merchant_reference": "<string>",
"customer_reference": "<string>",
"type": "onramp",
"from": {
"currency": "<string>",
"network": "<string>",
"amount": 123
},
"to": {
"currency": "<string>",
"network": "<string>",
"amount": 123
},
"pricing": {
"base_currency": "<string>",
"quote_currency": "<string>",
"exchange_rate": 123
},
"fee": {
"currency": "<string>",
"network_fee": 123,
"protocol_fee": 123,
"partner_fee": 123,
"vat": 123,
"total": 123,
"fee_in_rate": true
},
"metadata": {},
"amount_paid": 123,
"amount_settled": 123,
"amount_refunded": 123,
"percentage_settled": 123,
"status": "initiated",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"recipient": {
"institution_code": "<string>",
"account_number": "<string>",
"account_name": "<string>",
"memo": "<string>"
},
"payin": {
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"tx_reference": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"paid_at": "2023-11-07T05:31:56Z"
},
"payout": [
{
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"percentage": 123,
"tx_reference": "<string>",
"paid_at": "2023-11-07T05:31:56Z"
}
],
"refund": {
"currency": "<string>",
"account_name": "<string>",
"account_number": "<string>",
"institution_code": "<string>",
"amount": 123,
"tx_reference": "<string>",
"refunded_at": "2023-11-07T05:31:56Z"
},
"timeline": [
{
"group": "<string>",
"event": "<string>",
"details": "<unknown>",
"created_at": "2023-11-07T05:31:56Z"
}
]
},
"meta": {
"total": 123,
"per_page": 123,
"current_page": 123,
"last_page": 123
}
}{
"status": false,
"message": "<string>",
"code": "E_BADREQUEST"
}Rate limit: 2 tokens per request. See
GET /trade-api/v2/account/endpoint_costs for current non-default endpoint costs.Authorizations
Bearer sk_* plus required headers:
- liquidramp-client-id
- liquidramp-timestamp (unix ms)
- liquidramp-signature (sha256=...)
Path Parameters
Query Parameters
Comma-separated. Supported values: payout, timeline.
⌘I