Get Recipient
curl --request GET \
--url https://api.example.com/v1/ramp/recipients/{id}import requests
url = "https://api.example.com/v1/ramp/recipients/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/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/v1/ramp/recipients/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/v1/ramp/recipients/{id}"
req, _ := http.NewRequest("GET", url, nil)
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/v1/ramp/recipients/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/recipients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyRamping — Recipients
Get Recipient
GET /v1/ramp/recipients/ — Get full recipient details including all accounts
GET
/
v1
/
ramp
/
recipients
/
{id}
Get Recipient
curl --request GET \
--url https://api.example.com/v1/ramp/recipients/{id}import requests
url = "https://api.example.com/v1/ramp/recipients/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/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/v1/ramp/recipients/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/v1/ramp/recipients/{id}"
req, _ := http.NewRequest("GET", url, nil)
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/v1/ramp/recipients/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/recipients/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyEndpoint:
GET https://api.rebelfi.io/v1/ramp/recipients/{id}Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Recipient identifier |
Example Request
curl -X GET "https://api.rebelfi.io/v1/ramp/recipients/1" \
-H "x-api-key: your_api_key"
const recipient = await client.ramp.getRecipient(1);
Example Response
{
"id": 1,
"name": "OnEdge",
"type": "business",
"external_id": "ref-123",
"kyb_status": "approved",
"address": {
"street1": "123 Main St",
"street2": null,
"city": "New York",
"region": "NY",
"postal_code": "10001",
"country": "US"
},
"bank_accounts": [
{
"id": 10,
"account_number": "****1234",
"routing_number": "021000021",
"bank_name": "Chase",
"capabilities": ["onramp", "offramp"],
"status": "active",
"destination_asset": "USDC",
"network_id": "base"
}
],
"onramp_account_count": 1,
"offramp_account_count": 2,
"total_volume_usd": "150000.00",
"transaction_count": 45,
"created_at": "2025-06-01T12:00:00.000Z"
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | number | Recipient identifier |
name | string | Recipient name |
type | string | Recipient type |
external_id | string? | Your external reference ID |
kyb_status | string | KYB verification status |
address | object? | Recipient address |
address.street1 | string | Street address line 1 |
address.street2 | string? | Street address line 2 |
address.city | string | City |
address.region | string? | State or region |
address.postal_code | string? | Postal code |
address.country | string | Country code |
bank_accounts | array | List of linked bank accounts |
bank_accounts[].id | number | Bank account identifier |
bank_accounts[].account_number | string | Masked account number |
bank_accounts[].routing_number | string | Bank routing number |
bank_accounts[].bank_name | string | Bank name |
bank_accounts[].capabilities | string[] | Account capabilities (onramp, offramp) |
bank_accounts[].status | string | Account status |
bank_accounts[].destination_asset | string | Destination asset (e.g., USDC) |
bank_accounts[].network_id | string | Blockchain network identifier |
onramp_account_count | number | Number of on-ramp accounts |
offramp_account_count | number | Number of off-ramp accounts |
total_volume_usd | string | Total volume in USD |
transaction_count | number | Total number of transactions |
created_at | string | Creation timestamp (ISO 8601) |
Bank account numbers are masked in the response for security. Only the last 4 digits are visible.