Skip to main content
GET
/
accounts
/
{accountId}
Get Account
curl --request GET \
  --url https://api.rolla.xyz/api/v1/external/accounts/{accountId} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Account retrieved successfully",
  "data": {
    "account": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "Beta Logistics LLC",
      "email": "jsmith@example.com",
      "applicationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "currentStep": 1,
      "isComplete": true,
      "createdAt": "2023-11-07T05:31:56Z"
    },
    "application": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "current_step": 123,
      "is_complete": true,
      "business_info": {
        "legalName": "Acme Corp Ltd",
        "tradingName": "<string>",
        "businessType": "Limited Company",
        "incorporationDate": "2020-01-15",
        "incorporationCountry": "NG",
        "registrationNumber": "RC-1234567",
        "taxId": "12345678-0001",
        "website": "<string>",
        "description": "<string>",
        "monthlyVolume": "<string>",
        "annualRevenue": "<string>",
        "primaryFundingSource": "<string>"
      },
      "business_address": {
        "street": "123 Main Street",
        "city": "Lagos",
        "state": "Lagos",
        "postalCode": "100001",
        "country": "NG"
      },
      "contact_info": {
        "email": "contact@acmecorp.com",
        "phone": "+2341234567890"
      },
      "related_persons": [
        {
          "id": "<string>",
          "firstName": "John",
          "lastName": "Doe",
          "roles": [],
          "email": "jsmith@example.com",
          "phone": "<string>",
          "dateOfBirth": "1990-01-15",
          "ownershipPercentage": 50,
          "currentAddress": {
            "street": "123 Main Street",
            "city": "Lagos",
            "state": "Lagos",
            "postalCode": "100001",
            "country": "NG"
          },
          "sourceOfWealthExplanation": "<string>",
          "bvn": "<string>",
          "nin": "<string>"
        }
      ],
      "banking_info": {
        "bankName": "<string>",
        "accountNumber": "<string>",
        "routingNumber": "<string>",
        "currency": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "documents": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "applicationId": "<string>",
        "fileName": "<string>",
        "fileUrl": "<string>",
        "relatedPersonKey": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}
Retrieves a single account with its full KYB/KYC application and uploaded documents. Use this to track an application’s status after submission.

Example Request

curl -X GET "https://api.rolla.xyz/api/v1/external/accounts/b6075be0-f1d0-451f-a468-3e94563101d2" \
  -H "X-API-Key: your_api_key_here"

Example Response

{
  "success": true,
  "message": "Account retrieved successfully",
  "data": {
    "account": {
      "id": "b6075be0-f1d0-451f-a468-3e94563101d2",
      "name": "Jane Doe",
      "email": "owner@example.com",
      "entityType": "individual",
      "createdAt": "2026-06-12T23:30:43.040Z"
    },
    "application": {
      "id": "f436daf8-146b-4949-bf28-9b36440085a4",
      "status": "submitted",
      "current_step": 3,
      "is_complete": true,
      "entity_type": "individual",
      "individual_info": {
        "firstName": "Jane",
        "lastName": "Doe",
        "phone": "+2348012345678",
        "dateOfBirth": "1990-05-14",
        "citizenship": "NG"
      }
    },
    "documents": [
      {
        "id": "0c95b2a1-7a93-4a3a-9a52-2a1f0b9b3c11",
        "document_type": "proof_of_address",
        "file_name": "bank_statement.pdf",
        "mime_type": "application/pdf"
      }
    ]
  }
}
Application status moves from draftsubmittedapproved (or changes_requested / rejected). When changes are requested, the application becomes editable again and change_request_note explains what needs fixing.

Authorizations

X-API-Key
string
header
required

Your Rolla API key

Path Parameters

accountId
string<uuid>
required

Identifier of an account owned by the same user as your API key's business

Response

Account retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Account retrieved successfully"

data
object