List offramps
curl --request GET \
--url https://production.hifi.com/v3/offramps \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifi.com/v3/offramps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://production.hifi.com/v3/offramps', 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://production.hifi.com/v3/offramps",
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: Bearer <token>"
],
]);
$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://production.hifi.com/v3/offramps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production.hifi.com/v3/offramps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifi.com/v3/offramps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "offramp_9dQ2mNpXwZ7bV1aLcs3Kf",
"requestId": "8f3a2b1c-4d5e-6f70-8192-a3b4c5d6e7f8",
"status": "OPEN_QUOTE",
"failedReason": null,
"error": null,
"errorDetails": null,
"source": {
"chain": "POLYGON",
"amount": 100,
"currency": "USDC",
"userId": "usr_3Kf9dQ2mNpXwZ7bV1aLcs",
"walletId": "wlt_1aLcs3Kf9dQ2mNpXwZ7bV",
"externalWalletId": null,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678"
},
"destination": {
"amount": 99.5,
"currency": "USD",
"userId": "usr_7dLpR2mNpXwZ7bV1aQz3x",
"externalAccountId": "extacct_9aB0xY4mNpXwZ7bV1aLdt",
"externalCardId": null
},
"receipt": {
"transactionHash": "0xabc123def4567890abc123def4567890abc123def4567890abc123def4567890",
"paymentTracking": null
},
"quote": {
"sourceCurrency": "USDC",
"destinationCurrency": "USD",
"rate": "0.9985"
},
"depositInfo": [],
"sameDayAch": false,
"achMessage": null,
"sepaMessage": null,
"wireMessage": null,
"swiftMessage": null,
"purposeOfPayment": "Supplier payment",
"returnAddress": "0x1234567890abcdef1234567890abcdef12345678",
"developerFee": {
"id": "fee_9dQ2mNpXwZ7bV1aLcs3Kf",
"transactionHash": "0xdef4567890abc123def4567890abc123def4567890abc123def4567890abc123",
"fees": "0.5"
},
"description": "July settlement",
"createdAt": "2026-07-01T10:30:00.000Z",
"updatedAt": "2026-07-01T10:30:00.000Z"
}
],
"pagination": {
"hasMore": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}{
"type": "VALIDATION_ERROR",
"message": "One or more fields are invalid or missing.",
"fields": [
{
"code": "invalid_value",
"message": "Must be a valid email address",
"field": "email"
}
]
}{
"type": "UNAUTHORIZED",
"message": "Authentication required"
}{
"type": "INTERNAL_SERVER_ERROR",
"message": "An internal server error occurred"
}Offramps
List offramps
List all offramp transactions for the authenticated client. Supports cursor-based pagination and filtering by source user, destination user, and status.
GET
/
v3
/
offramps
List offramps
curl --request GET \
--url https://production.hifi.com/v3/offramps \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifi.com/v3/offramps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://production.hifi.com/v3/offramps', 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://production.hifi.com/v3/offramps",
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: Bearer <token>"
],
]);
$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://production.hifi.com/v3/offramps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://production.hifi.com/v3/offramps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifi.com/v3/offramps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "offramp_9dQ2mNpXwZ7bV1aLcs3Kf",
"requestId": "8f3a2b1c-4d5e-6f70-8192-a3b4c5d6e7f8",
"status": "OPEN_QUOTE",
"failedReason": null,
"error": null,
"errorDetails": null,
"source": {
"chain": "POLYGON",
"amount": 100,
"currency": "USDC",
"userId": "usr_3Kf9dQ2mNpXwZ7bV1aLcs",
"walletId": "wlt_1aLcs3Kf9dQ2mNpXwZ7bV",
"externalWalletId": null,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678"
},
"destination": {
"amount": 99.5,
"currency": "USD",
"userId": "usr_7dLpR2mNpXwZ7bV1aQz3x",
"externalAccountId": "extacct_9aB0xY4mNpXwZ7bV1aLdt",
"externalCardId": null
},
"receipt": {
"transactionHash": "0xabc123def4567890abc123def4567890abc123def4567890abc123def4567890",
"paymentTracking": null
},
"quote": {
"sourceCurrency": "USDC",
"destinationCurrency": "USD",
"rate": "0.9985"
},
"depositInfo": [],
"sameDayAch": false,
"achMessage": null,
"sepaMessage": null,
"wireMessage": null,
"swiftMessage": null,
"purposeOfPayment": "Supplier payment",
"returnAddress": "0x1234567890abcdef1234567890abcdef12345678",
"developerFee": {
"id": "fee_9dQ2mNpXwZ7bV1aLcs3Kf",
"transactionHash": "0xdef4567890abc123def4567890abc123def4567890abc123def4567890abc123",
"fees": "0.5"
},
"description": "July settlement",
"createdAt": "2026-07-01T10:30:00.000Z",
"updatedAt": "2026-07-01T10:30:00.000Z"
}
],
"pagination": {
"hasMore": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}{
"type": "VALIDATION_ERROR",
"message": "One or more fields are invalid or missing.",
"fields": [
{
"code": "invalid_value",
"message": "Must be a valid email address",
"field": "email"
}
]
}{
"type": "UNAUTHORIZED",
"message": "Authentication required"
}{
"type": "INTERNAL_SERVER_ERROR",
"message": "An internal server error occurred"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
default to 10, maximum to 100
Required range:
1 <= x <= 100Return records after this cursor.
Return records before this cursor.
Filter offramps by source user public ID (prefixed with usr_).
Filter offramps by destination user public ID (prefixed with usr_).
Filter offramps by transaction status.
Available options:
NOT_INITIATED, CREATED, PENDING_APPROVAL, OPEN_QUOTE, CRYPTO_INITIATED, AWAITING_FUNDS, CRYPTO_PENDING, CRYPTO_PROCESSED, FIAT_INITIATED, FIAT_PENDING, COMPLETED, FIAT_FAILED, FIAT_RETURNED, CRYPTO_RETURNED, CRYPTO_FAILED, QUOTE_FAILED, IN_REVIEW, REJECTED, EXPIRED, CANCELLED ⌘I