RFIs
List RFIs
List the requests for information belonging to your client, each with its items nested — there is no separate endpoint for items. Sorted by due_at. You never create an RFI here — Kira raises them; you only read and answer.
GET
/
v1
/
rfis
List RFIs
curl --request GET \
--url https://api.balampay.com/v1/rfis \
--header 'Authorization: Bearer <token>' \
--header 'x-api-key: <api-key>'import requests
url = "https://api.balampay.com/v1/rfis"
headers = {
"Authorization": "Bearer <token>",
"x-api-key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'x-api-key': '<api-key>'}
};
fetch('https://api.balampay.com/v1/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://api.balampay.com/v1/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>",
"x-api-key: <api-key>"
],
]);
$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.balampay.com/v1/rfis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("x-api-key", "<api-key>")
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.balampay.com/v1/rfis")
.header("Authorization", "Bearer <token>")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balampay.com/v1/rfis")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"rfi_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "pending",
"due_at": "2023-11-07T05:31:56Z",
"blocking": {
"type": "transfer",
"transfer_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"resolution_reason": "expired",
"created_at": "2023-11-07T05:31:56Z",
"first_answered_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"closed_at": "2023-11-07T05:31:56Z",
"items": [
{
"item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ordinal": 123,
"prompt": "<string>",
"answer_type": "text_long",
"answer_spec": {
"mime_types": [
"application/pdf"
],
"max_files": 5
},
"target_key": "<string>",
"status": "pending",
"answer_value": "<string>",
"documents": [
{
"document_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"file_name": "january.pdf",
"mime_type": "application/pdf",
"size_bytes": 123,
"uploaded_at": "2023-11-07T05:31:56Z",
"checksum": "<string>"
}
],
"review_note": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"returned_at": "2023-11-07T05:31:56Z"
}
]
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"has_more": true
}
}{
"message": "<string>",
"code": "<string>",
"statusCode": 123,
"error": "<string>",
"timestamp": "<string>",
"path": "<string>",
"details": "<unknown>"
}Stable since 2025-01-01 — unchanged in 2026-06-01.
Authorizations
Access token from POST /auth (the data.access_token value).
API key issued by Kira. Required on every request, including /auth.
Headers
Optional. The date-versioned API version to apply for this request (e.g. 2026-04-14). When sent it always wins, even over your pinned account default. When omitted, the API uses your account's pinned version if set, otherwise a baseline default.
Example:
"2026-06-01"
Query Parameters
Filter by subclient UUID.
Filter by RFI status.
Available options:
pending, answered, resolved, not_resolved Page size (1-100).
Required range:
1 <= x <= 100Number of RFIs to skip for pagination.
Required range:
x >= 0⌘I
List RFIs
curl --request GET \
--url https://api.balampay.com/v1/rfis \
--header 'Authorization: Bearer <token>' \
--header 'x-api-key: <api-key>'import requests
url = "https://api.balampay.com/v1/rfis"
headers = {
"Authorization": "Bearer <token>",
"x-api-key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'x-api-key': '<api-key>'}
};
fetch('https://api.balampay.com/v1/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://api.balampay.com/v1/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>",
"x-api-key: <api-key>"
],
]);
$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.balampay.com/v1/rfis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("x-api-key", "<api-key>")
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.balampay.com/v1/rfis")
.header("Authorization", "Bearer <token>")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balampay.com/v1/rfis")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"rfi_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "pending",
"due_at": "2023-11-07T05:31:56Z",
"blocking": {
"type": "transfer",
"transfer_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"resolution_reason": "expired",
"created_at": "2023-11-07T05:31:56Z",
"first_answered_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"closed_at": "2023-11-07T05:31:56Z",
"items": [
{
"item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ordinal": 123,
"prompt": "<string>",
"answer_type": "text_long",
"answer_spec": {
"mime_types": [
"application/pdf"
],
"max_files": 5
},
"target_key": "<string>",
"status": "pending",
"answer_value": "<string>",
"documents": [
{
"document_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"file_name": "january.pdf",
"mime_type": "application/pdf",
"size_bytes": 123,
"uploaded_at": "2023-11-07T05:31:56Z",
"checksum": "<string>"
}
],
"review_note": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"returned_at": "2023-11-07T05:31:56Z"
}
]
}
],
"pagination": {
"total": 123,
"limit": 123,
"offset": 123,
"has_more": true
}
}{
"message": "<string>",
"code": "<string>",
"statusCode": 123,
"error": "<string>",
"timestamp": "<string>",
"path": "<string>",
"details": "<unknown>"
}