List RFIs
curl --request GET \
--url https://production.hifi.com/v3/rfis \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifi.com/v3/rfis"
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/rfis', 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/rfis",
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/rfis"
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/rfis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifi.com/v3/rfis")
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": "rfi_5Kf9dQ2mNpXwZ7bV1aLcs",
"kind": "onboarding",
"status": "issued",
"subjectType": "individual",
"userId": "usr_3Kf9dQ2mNpXwZ7bV1aLcs",
"transferId": null,
"flowType": null,
"createdAt": "2026-07-01T10:30:00.000Z",
"currentRound": 1,
"round": {
"id": "rfir_2mNpXwZ7bV1aLcs3Kf9dQ",
"round": 1,
"issuedAt": "2026-07-01T10:30:00.000Z",
"expiresAt": "2026-07-31T10:30:00.000Z",
"submittedAt": null,
"items": [
{
"id": "3f7c1e90-2a4b-4d61-9c0e-5b8f2d6a1e34",
"kind": "document",
"label": "Proof of address issued in the last 3 months",
"docType": "proof_of_address",
"detail": "A utility bill or bank statement dated within the last three months.",
"required": true
},
{
"id": "6b2d4a81-7c05-4e39-8f1a-2d9c3e7b5041",
"kind": "question",
"label": "What is the source of the funds being deposited?",
"docType": null,
"detail": null,
"required": true
}
],
"link": "https://dashboard.hifi.com/production/rfi-link/rfir_2mNpXwZ7bV1aLcs3Kf9dQ#sessionToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1
}
}{
"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"
}Compliance
List RFIs
List the requests for information (RFIs) compliance has raised against your users. An RFI is raised either during onboarding, against the user’s verification, or against a single transfer, which stays held until the request is resolved.
If you would rather collect the reply programmatically, submit it through the Submit a response to an RFI endpoint instead.
GET
/
v3
/
rfis
List RFIs
curl --request GET \
--url https://production.hifi.com/v3/rfis \
--header 'Authorization: Bearer <token>'import requests
url = "https://production.hifi.com/v3/rfis"
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/rfis', 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/rfis",
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/rfis"
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/rfis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production.hifi.com/v3/rfis")
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": "rfi_5Kf9dQ2mNpXwZ7bV1aLcs",
"kind": "onboarding",
"status": "issued",
"subjectType": "individual",
"userId": "usr_3Kf9dQ2mNpXwZ7bV1aLcs",
"transferId": null,
"flowType": null,
"createdAt": "2026-07-01T10:30:00.000Z",
"currentRound": 1,
"round": {
"id": "rfir_2mNpXwZ7bV1aLcs3Kf9dQ",
"round": 1,
"issuedAt": "2026-07-01T10:30:00.000Z",
"expiresAt": "2026-07-31T10:30:00.000Z",
"submittedAt": null,
"items": [
{
"id": "3f7c1e90-2a4b-4d61-9c0e-5b8f2d6a1e34",
"kind": "document",
"label": "Proof of address issued in the last 3 months",
"docType": "proof_of_address",
"detail": "A utility bill or bank statement dated within the last three months.",
"required": true
},
{
"id": "6b2d4a81-7c05-4e39-8f1a-2d9c3e7b5041",
"kind": "question",
"label": "What is the source of the funds being deposited?",
"docType": null,
"detail": null,
"required": true
}
],
"link": "https://dashboard.hifi.com/production/rfi-link/rfir_2mNpXwZ7bV1aLcs3Kf9dQ#sessionToken=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 1
}
}{
"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
Filter requests by status.
Available options:
issued, submitted, resolved, expired Filter requests by what they are attached to.
Available options:
onboarding, transaction Public ID of the user whose requests are listed (prefixed with usr_)
Number of requests to return.
Required range:
1 <= x <= 100Number of requests to skip.
Required range:
x >= 0⌘I