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

# Get KYC status for a client onboarding submission

> Poll the current state of a KYC submission by kycToken to check whether the client is pending, approved, or rejected by the compliance provider.

## Request

<ParamField header="X-Mippo-API-Key" type="string" required>
  Your LaaS API key.
</ParamField>

<ParamField path="kycToken" type="string" required>
  The KYC token returned by `POST /v1/laas/kyc/submit`.
</ParamField>

```bash theme={null}
GET /v1/laas/clients/kyc_1719000000_abc123
```

## Response

<ResponseField name="data.token" type="string">
  The KYC token.
</ResponseField>

<ResponseField name="data.status" type="string">
  `APPROVED` | `PENDING` | `REJECTED` | `EXPIRED`
</ResponseField>

<ResponseField name="data.riskTier" type="string">
  `STANDARD` | `HIGH` | `PEP`
</ResponseField>

<ResponseField name="data.expiresAt" type="string">
  ISO 8601 expiry timestamp.
</ResponseField>

```json Response (200) theme={null}
{
  "success": true,
  "data": {
    "token": "kyc_1719000000_abc123",
    "status": "APPROVED",
    "riskTier": "STANDARD",
    "expiresAt": "2026-07-24T00:00:00.000Z"
  }
}
```
