Recipients
Get recipient
Fetch a single recipient by ID
GET
/
api
/
recipients
/
{id}
Get recipient
curl --request GET \
--url https://api.example.com/api/recipients/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/recipients/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/recipients/{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.example.com/api/recipients/{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 => [
"Authorization: <authorization>"
],
]);
$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.example.com/api/recipients/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.example.com/api/recipients/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/recipients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "8b1a4c1d-7a3c-4a08-94ad-9f1ef1e0c3a2",
"email": "payments@acme-ph.com",
"isBusiness": true,
"businessName": "Acme Corp Philippines",
"country": "PH",
"currency": "PHP",
"phone": "+639170000000",
"address": {
"streetLine1": "100 Acme Ave",
"city": "Makati",
"state": "Metro Manila",
"postalCode": "1226",
"country": "PH"
},
"transferType": "fiat",
"externalReference": { "vendor_id": "ACME-001" },
"status": "accepted",
"createdAt": "2026-06-09T10:00:00Z",
"updatedAt": "2026-06-09T10:00:00Z"
}
Returns
404 if the ID isn’t yours.
Scope
recipients:readHeaders
string
required
API key.
Path parameters
string
required
Recipient UUID.
Response
string
UUID.
string
boolean
string
string
string
string
ISO 3166-1 alpha-2.
string
string
string
"fiat" or "stablecoin".object
Chain ID → address, when
transferType is "stablecoin".object
Map of
string → string.string
"pending", "accepted", or "rejected".string
ISO 8601.
string
ISO 8601.
{
"id": "8b1a4c1d-7a3c-4a08-94ad-9f1ef1e0c3a2",
"email": "payments@acme-ph.com",
"isBusiness": true,
"businessName": "Acme Corp Philippines",
"country": "PH",
"currency": "PHP",
"phone": "+639170000000",
"address": {
"streetLine1": "100 Acme Ave",
"city": "Makati",
"state": "Metro Manila",
"postalCode": "1226",
"country": "PH"
},
"transferType": "fiat",
"externalReference": { "vendor_id": "ACME-001" },
"status": "accepted",
"createdAt": "2026-06-09T10:00:00Z",
"updatedAt": "2026-06-09T10:00:00Z"
}
⌘I
Get recipient
curl --request GET \
--url https://api.example.com/api/recipients/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/recipients/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/recipients/{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.example.com/api/recipients/{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 => [
"Authorization: <authorization>"
],
]);
$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.example.com/api/recipients/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.example.com/api/recipients/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/recipients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "8b1a4c1d-7a3c-4a08-94ad-9f1ef1e0c3a2",
"email": "payments@acme-ph.com",
"isBusiness": true,
"businessName": "Acme Corp Philippines",
"country": "PH",
"currency": "PHP",
"phone": "+639170000000",
"address": {
"streetLine1": "100 Acme Ave",
"city": "Makati",
"state": "Metro Manila",
"postalCode": "1226",
"country": "PH"
},
"transferType": "fiat",
"externalReference": { "vendor_id": "ACME-001" },
"status": "accepted",
"createdAt": "2026-06-09T10:00:00Z",
"updatedAt": "2026-06-09T10:00:00Z"
}