> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rolla.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Verification Status

> Returns the identity verification status of an individual account holder.

Returns the identity verification status of an individual account holder.

## Example Request

```bash theme={null}
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

```json theme={null}
{
  "success": true,
  "message": "Verification status retrieved successfully",
  "data": {
    "verified": true,
    "reviewStatus": "completed",
    "reviewAnswer": "GREEN"
  }
}
```

## Response Fields

| Field          | Type    | Description                                                                                       |
| -------------- | ------- | ------------------------------------------------------------------------------------------------- |
| `verified`     | boolean | `true` once the review completed with a positive result                                           |
| `reviewStatus` | string  | Provider review state, e.g. `init`, `pending`, `completed`; `null` if verification hasn't started |
| `reviewAnswer` | string  | `GREEN` (passed) or `RED` (failed); `null` while in progress                                      |


## OpenAPI

````yaml GET /accounts/{accountId}/verification
openapi: 3.1.0
info:
  title: Rolla Developer API
  description: >-
    API for programmatic transaction management on the Rolla platform. Monetary
    `amount` fields use the smallest unit of the referenced currency unless an
    endpoint says otherwise (e.g. NGN = kobo, USD = cents, where **100 cents =
    USD 1.00**).
  version: 1.0.0
servers:
  - url: https://api.rolla.xyz/api/v1/external
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /accounts/{accountId}/verification:
    get:
      summary: Get Verification Status
      description: >-
        Returns the identity verification status of an individual account
        holder.
      operationId: getAccountVerificationStatus
      parameters:
        - name: accountId
          in: path
          required: true
          description: >-
            Identifier of an account owned by the same user as your API key's
            business
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Verification status retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Verification status retrieved successfully
                  data:
                    $ref: '#/components/schemas/VerificationStatus'
        '400':
          description: Non-individual account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    VerificationStatus:
      type: object
      properties:
        verified:
          type: boolean
        reviewStatus:
          type: string
          nullable: true
          example: completed
        reviewAnswer:
          type: string
          nullable: true
          enum:
            - GREEN
            - RED
            - null
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Rolla API key

````