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

# Get Verification

> Get verification status and basic details

# Get Verification

Retrieve the current status and basic information about a specific verification.

## Request

### Path Parameters

| Parameter | Type   | Required | Description         |
| --------- | ------ | -------- | ------------------- |
| id        | string | Yes      | The verification ID |

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "id": "abc123def456",
    "type": "kyc",
    "subjectReference": "user-12345",
    "status": "submitted",
    "requestedAt": "2024-01-15T10:30:00.000Z",
    "resolvedAt": null,
    "currentStep": 4,
    "verificationUrl": "https://app.nfi-clear.com/verify/abc123def456",
    "submittedData": {
      "residenceCountry": "Singapore",
      "documentType": "passport"
    }
  }
}
```

## Status Values

| Status          | Description                               |
| --------------- | ----------------------------------------- |
| `pending`       | Verification created, user hasn't started |
| `submitted`     | User completed, pending review            |
| `action_needed` | Reviewer requested corrections            |
| `approved`      | Verification approved                     |
| `rejected`      | Verification rejected                     |

## Example

### cURL

```bash theme={null}
curl 'https://clear-api.nfigate.com/api/v1/verifications/abc123def456' \
  -H 'X-API-Key: nfi_your_api_key_here'
```

### JavaScript

```javascript theme={null}
const response = await fetch(
  'https://clear-api.nfigate.com/api/v1/verifications/abc123def456',
  {
    headers: { 'X-API-Key': 'nfi_your_api_key_here' }
  }
);

const data = await response.json();
console.log('Status:', data.data.status);
```

## Error Responses

| Status | Code                     | Description               |
| ------ | ------------------------ | ------------------------- |
| 404    | `VERIFICATION_NOT_FOUND` | Verification ID not found |


## OpenAPI

````yaml GET /verifications/{id}
openapi: 3.0.0
info:
  title: NFI Clear API
  description: Identity verification platform for KYC and KYB
  version: 1.0.0
  contact:
    email: support@nfi-clear.com
servers:
  - url: https://clear-api.nfigate.com/api/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /verifications/{id}:
    get:
      summary: Get Verification
      description: Get verification status and basic details
      operationId: getVerification
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Verification ID
      responses:
        '200':
          description: Verification details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationResponse'
        '404':
          description: Verification not found
components:
  schemas:
    VerificationResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          $ref: '#/components/schemas/Verification'
        message:
          type: string
    Verification:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - kyc
            - kyb
        subjectReference:
          type: string
        status:
          type: string
          enum:
            - pending
            - submitted
            - action_needed
            - approved
            - rejected
        requestedAt:
          type: string
          format: date-time
        resolvedAt:
          type: string
          format: date-time
          nullable: true
        currentStep:
          type: integer
        verificationUrl:
          type: string
        submittedData:
          type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your API key from the dashboard

````