Summary
curl --request GET \
--url https://api.example.com/v1/ramp/summaryimport requests
url = "https://api.example.com/v1/ramp/summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/summary', 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/summary",
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/summary"
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/summary")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/summary")
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 — Transactions
Summary
GET /v1/ramp/summary — Get aggregate volume and fee statistics
GET
/
v1
/
ramp
/
summary
Summary
curl --request GET \
--url https://api.example.com/v1/ramp/summaryimport requests
url = "https://api.example.com/v1/ramp/summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/ramp/summary', 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/summary",
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/summary"
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/summary")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/ramp/summary")
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/summaryQuery Parameters
| Field | Type | Required | Description |
|---|---|---|---|
date_from | string | No | Start date filter (ISO 8601) |
date_to | string | No | End date filter (ISO 8601) |
Example Request
curl -X GET "https://api.rebelfi.io/v1/ramp/summary?date_from=2026-03-01T00:00:00Z&date_to=2026-03-31T23:59:59Z" \
-H "x-api-key: your_api_key"
const summary = await client.ramp.getSummary({
dateFrom: '2026-03-01',
dateTo: '2026-03-31'
});
Example Response
{
"total_volume_usd": 450000,
"total_fees_usd": 1125,
"total_delivered": 448875,
"active_ramp_recipients": 12,
"transaction_count": 28,
"period_breakdown": [
{
"date": "2026-03-15",
"volume_usd": 50000,
"transactions": 3
},
{
"date": "2026-03-16",
"volume_usd": 75000,
"transactions": 5
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
total_volume_usd | number | Total USD volume in the period |
total_fees_usd | number | Total fees collected |
total_delivered | number | Total amount delivered after fees |
active_ramp_recipients | number | Number of active recipients |
transaction_count | number | Total number of transactions |
period_breakdown | array | Daily breakdown of activity |
period_breakdown[].date | string | Date (YYYY-MM-DD) |
period_breakdown[].volume_usd | number | USD volume for the day |
period_breakdown[].transactions | number | Number of transactions for the day |