List Recipients
curl --request GET \
--url https://api.example.com/v1/ramp/recipientsimport requests
url = "https://api.example.com/v1/ramp/recipients"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/recipients', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/recipients")
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
List Recipients
GET /v1/ramp/recipients — List all recipients with KYB status and volume summaries
GET
/
v1
/
ramp
/
recipients
List Recipients
curl --request GET \
--url https://api.example.com/v1/ramp/recipientsimport requests
url = "https://api.example.com/v1/ramp/recipients"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/recipients', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/recipients")
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/recipientsQuery Parameters
| Field | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number (default: 1) |
per_page | integer | No | Results per page (default: 20, max: 100) |
Example Request
curl -X GET "https://api.rebelfi.io/v1/ramp/recipients?page=1&per_page=20" \
-H "x-api-key: your_api_key"
const recipients = await client.ramp.listRecipients({
page: 1,
perPage: 20
});
Example Response
{
"data": [
{
"id": 1,
"name": "OnEdge",
"type": "business",
"external_id": "ref-123",
"kyb_status": "approved",
"onramp_account_count": 1,
"offramp_account_count": 2,
"total_volume_usd": "150000.00",
"transaction_count": 45,
"created_at": "2025-06-01T12:00:00.000Z"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 1
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
data | array | List of recipient objects |
data[].id | number | Recipient identifier |
data[].name | string | Recipient name |
data[].type | string | Recipient type |
data[].external_id | string? | Your external reference ID |
data[].kyb_status | string | KYB verification status |
data[].onramp_account_count | number | Number of on-ramp accounts |
data[].offramp_account_count | number | Number of off-ramp accounts |
data[].total_volume_usd | string | Total volume in USD |
data[].transaction_count | number | Total number of transactions |
data[].created_at | string | Creation timestamp (ISO 8601) |
pagination.page | number | Current page number |
pagination.per_page | number | Results per page |
pagination.total | number | Total number of recipients |
Results are paginated. Use the
page and per_page query parameters to navigate through large result sets.