Skip to main content
GET
/
accounts
/
{accountId}
/
verification
Get Verification Status
curl --request GET \
  --url https://api.rolla.xyz/api/v1/external/accounts/{accountId}/verification \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Verification status retrieved successfully",
  "data": {
    "verified": true,
    "reviewStatus": "completed"
  }
}
Returns the identity verification status of an individual account holder.

Example Request

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

Example Response

{
  "success": true,
  "message": "Verification status retrieved successfully",
  "data": {
    "verified": true,
    "reviewStatus": "completed",
    "reviewAnswer": "GREEN"
  }
}

Response Fields

FieldTypeDescription
verifiedbooleantrue once the review completed with a positive result
reviewStatusstringProvider review state, e.g. init, pending, completed; null if verification hasn’t started
reviewAnswerstringGREEN (passed) or RED (failed); null while in progress

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

Verification status retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Verification status retrieved successfully"

data
object