Get a v2 payment order by ID
curl --request GET \
--url https://api.paycrest.io/v2/sender/orders/{id} \
--header 'API-Key: <api-key>'import requests
url = "https://api.paycrest.io/v2/sender/orders/{id}"
headers = {"API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Key': '<api-key>'}};
fetch('https://api.paycrest.io/v2/sender/orders/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.paycrest.io/v2/sender/orders/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.paycrest.io/v2/sender/orders/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paycrest.io/v2/sender/orders/{id}")
.header("API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paycrest.io/v2/sender/orders/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "<string>",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"amount": "<string>",
"amountInUsd": "<string>",
"amountPaid": "<string>",
"amountReturned": "<string>",
"percentSettled": "<string>",
"rate": "<string>",
"senderFee": "<string>",
"senderFeePercent": "<string>",
"transactionFee": "<string>",
"reference": "<string>",
"txHash": "<string>",
"providerAccount": {
"network": "<string>",
"receiveAddress": "<string>",
"validUntil": "2023-11-07T05:31:56Z"
},
"source": {
"type": "crypto",
"currency": "<string>",
"refundAddress": "<string>"
},
"destination": {
"type": "fiat",
"currency": "<string>",
"recipient": {
"institution": "<string>",
"accountIdentifier": "<string>",
"accountName": "<string>",
"memo": "<string>",
"institutionName": "<string>",
"metadata": {
"businessNumber": "<string>"
}
},
"country": "<string>",
"providerId": "<string>",
"kyc": {}
}
}
}Sender
Get Order by ID
GET
/
sender
/
orders
/
{id}
Get a v2 payment order by ID
curl --request GET \
--url https://api.paycrest.io/v2/sender/orders/{id} \
--header 'API-Key: <api-key>'import requests
url = "https://api.paycrest.io/v2/sender/orders/{id}"
headers = {"API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Key': '<api-key>'}};
fetch('https://api.paycrest.io/v2/sender/orders/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.paycrest.io/v2/sender/orders/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.paycrest.io/v2/sender/orders/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.paycrest.io/v2/sender/orders/{id}")
.header("API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paycrest.io/v2/sender/orders/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "<string>",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"amount": "<string>",
"amountInUsd": "<string>",
"amountPaid": "<string>",
"amountReturned": "<string>",
"percentSettled": "<string>",
"rate": "<string>",
"senderFee": "<string>",
"senderFeePercent": "<string>",
"transactionFee": "<string>",
"reference": "<string>",
"txHash": "<string>",
"providerAccount": {
"network": "<string>",
"receiveAddress": "<string>",
"validUntil": "2023-11-07T05:31:56Z"
},
"source": {
"type": "crypto",
"currency": "<string>",
"refundAddress": "<string>"
},
"destination": {
"type": "fiat",
"currency": "<string>",
"recipient": {
"institution": "<string>",
"accountIdentifier": "<string>",
"accountName": "<string>",
"memo": "<string>",
"institutionName": "<string>",
"metadata": {
"businessNumber": "<string>"
}
},
"country": "<string>",
"providerId": "<string>",
"kyc": {}
}
}
}⌘I