> ## 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 Details

> Get complete verification details with progress and submitted data

# Get Verification Details

Retrieve complete information about a verification, including:

* Full progress tracking with step history
* Sub-step progress for KYB flows
* Access logs
* All submitted data

## Request

### Path Parameters

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

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "id": "abc123def456",
    "type": "kyb",
    "subjectReference": "company-12345",
    "status": "submitted",
    "requestedAt": "2024-01-15T10:30:00.000Z",
    "verificationUrl": "https://app.nfi-clear.com/verify/abc123def456",
    "progress": {
      "currentStep": 7,
      "stepHistory": [
        { "step": 1, "stepName": "Company Info", "completedAt": "2024-01-15T10:35:00Z" },
        { "step": 2, "stepName": "Entity Type", "completedAt": "2024-01-15T10:36:00Z" },
        { "step": 3, "stepName": "Business Details", "completedAt": "2024-01-15T10:40:00Z" },
        { "step": 4, "stepName": "Document Upload", "completedAt": "2024-01-15T10:45:00Z" },
        { "step": 5, "stepName": "Financial Info", "completedAt": "2024-01-15T10:50:00Z" },
        { "step": 6, "stepName": "Connected Parties", "completedAt": "2024-01-15T10:55:00Z" },
        { "step": 7, "stepName": "Corporate Governance", "completedAt": "2024-01-15T10:58:00Z" }
      ],
      "currentAccountTypeStep": 3,
      "currentDocumentStep": 4,
      "currentFinancialStep": 3,
      "currentConnectedPartiesStep": 4,
      "currentCorporateGovernanceStep": 2
    },
    "submittedData": {
      "companyInfo": {
        "legalEntityName": "Acme Pte Ltd",
        "contactName": "John Doe"
      },
      "accountType": {
        "entityType": "Private Limited Company",
        "incorpCountry": { "name": "Singapore" }
      },
      "submittedAt": "2024-01-15T10:58:00Z"
    }
  }
}
```

## Example

### cURL

```bash theme={null}
curl 'https://clear-api.nfigate.com/api/v1/verifications/abc123def456/details' \
  -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/details',
  {
    headers: { 'X-API-Key': 'nfi_your_api_key_here' }
  }
);

const data = await response.json();
console.log('Progress:', data.data.progress);
console.log('Submitted Data:', data.data.submittedData);
```

## Sub-step Tracking

For KYB verifications, the API tracks progress within each major step:

| Field                            | Description                         |
| -------------------------------- | ----------------------------------- |
| `currentAccountTypeStep`         | Business Details sub-step (1-3)     |
| `currentDocumentStep`            | Document Upload sub-step (1-4)      |
| `currentFinancialStep`           | Financial Info sub-step (1-3)       |
| `currentConnectedPartiesStep`    | Connected Parties sub-step (1-4)    |
| `currentCorporateGovernanceStep` | Corporate Governance sub-step (1-2) |


## OpenAPI

````yaml GET /verifications/{id}/details
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}/details:
    get:
      summary: Get Verification Details
      description: Get complete verification details with progress and submitted data
      operationId: getVerificationDetails
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Verification ID
      responses:
        '200':
          description: Complete verification details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationDetailsResponse'
        '404':
          description: Verification not found
components:
  schemas:
    VerificationDetailsResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
          properties:
            id:
              type: string
            type:
              type: string
            subjectReference:
              type: string
            status:
              type: string
            requestedAt:
              type: string
            verificationUrl:
              type: string
            progress:
              type: object
            submittedData:
              type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your API key from the dashboard

````