List Accounts
curl --request GET \
--url https://api.rolla.xyz/api/v1/external/accounts \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rolla.xyz/api/v1/external/accounts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.rolla.xyz/api/v1/external/accounts', 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.rolla.xyz/api/v1/external/accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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.rolla.xyz/api/v1/external/accounts"
req, _ := http.NewRequest("GET", url, nil)
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.rolla.xyz/api/v1/external/accounts")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rolla.xyz/api/v1/external/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Accounts retrieved successfully",
"data": {
"accounts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Beta Logistics LLC",
"email": "jsmith@example.com",
"entityType": "business",
"applicationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"applicationStatus": "draft",
"currentStep": 1,
"isComplete": true,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"page": 123,
"pageSize": 123,
"totalCount": 123,
"totalPages": 123,
"hasMore": true
}
}{
"success": false,
"message": "<string>"
}{
"status": 403,
"message": "Account onboarding is available to white-label partners only. Contact Rolla to enable white-label for your business."
}Account Onboarding
List Accounts
Lists all accounts owned by the same user as your API key’s business, including the originating account, with their application status.
GET
/
accounts
List Accounts
curl --request GET \
--url https://api.rolla.xyz/api/v1/external/accounts \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rolla.xyz/api/v1/external/accounts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.rolla.xyz/api/v1/external/accounts', 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.rolla.xyz/api/v1/external/accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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.rolla.xyz/api/v1/external/accounts"
req, _ := http.NewRequest("GET", url, nil)
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.rolla.xyz/api/v1/external/accounts")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rolla.xyz/api/v1/external/accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Accounts retrieved successfully",
"data": {
"accounts": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Beta Logistics LLC",
"email": "jsmith@example.com",
"entityType": "business",
"applicationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"applicationStatus": "draft",
"currentStep": 1,
"isComplete": true,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"page": 123,
"pageSize": 123,
"totalCount": 123,
"totalPages": 123,
"hasMore": true
}
}{
"success": false,
"message": "<string>"
}{
"status": 403,
"message": "Account onboarding is available to white-label partners only. Contact Rolla to enable white-label for your business."
}Lists every account owned by the same user as your API key’s business — including the account your API key belongs to — with each application’s status.
Example Request
curl -X GET "https://api.rolla.xyz/api/v1/external/accounts?page=1&pageSize=20" \
-H "X-API-Key: your_api_key_here"
Example Response
{
"success": true,
"message": "Accounts retrieved successfully",
"data": {
"accounts": [
{
"id": "6adb1c69-f42c-493c-9f66-6e8cfd6d2c35",
"name": "Acme Trading Ltd",
"email": "owner@example.com",
"entityType": "business",
"applicationId": "4d4ad44f-8e72-4be8-83f6-1e6c69e77962",
"applicationStatus": "approved",
"currentStep": 6,
"isComplete": true,
"createdAt": "2026-06-12T23:28:05.373Z"
},
{
"id": "b6075be0-f1d0-451f-a468-3e94563101d2",
"name": "Jane Doe",
"email": "owner@example.com",
"entityType": "individual",
"applicationId": "f436daf8-146b-4949-bf28-9b36440085a4",
"applicationStatus": "submitted",
"currentStep": 3,
"isComplete": true,
"createdAt": "2026-06-12T23:30:43.040Z"
}
],
"page": 1,
"pageSize": 20,
"totalCount": 2,
"totalPages": 1,
"hasMore": false
}
}
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number (default 1) |
pageSize | integer | No | Results per page (default 20, max 100) |
entityType | string | No | Filter by business or individual |
status | string | No | Filter by application status (draft, submitted, approved, rejected, changes_requested) |
Authorizations
Your Rolla API key
Query Parameters
Required range:
x <= 100Available options:
business, individual Filter by application status
Available options:
draft, submitted, approved, rejected, changes_requested ⌘I