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

# Verify US Individual

> Verify US Identity in real time

Dojah's Identity US API helps to verify the address and SSN of an individual

### Request

```http [GET] theme={null}
{{baseUrl}}/api/v1/us/kyc
```

### Header

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### Body Parameter

| Parameter                 | Type   | Description        | Required                                                |
| ------------------------- | ------ | ------------------ | ------------------------------------------------------- |
| first\_name \*            | string |                    | required                                                |
| last\_name \*             | string |                    | required                                                |
| address\_street\_1 \*     | string |                    | required                                                |
| address\_street\_2        | string |                    | optional                                                |
| address\_city             | string |                    | Conditional: required if zipcode is not present         |
| address\_state            | string |                    | Conditional: required if zipcode is not present         |
| address\_zip\_code        | string |                    | Conditional: not required if city and state are present |
| identity\_number\_type \* | string | "'SSN9' or 'SSN4'" | required                                                |
| identity\_number \*       | string |                    | required                                                |

### Sample response

```json Response theme={null}
{
  "entity": {
    "id-number": 4655255784,
    "results": {
      "key": "result.match",
      "message": "ID Located"
    },
    "summary-result": {
      "key": "id.success",
      "message": "PASS"
    }
  }
}
```

### Response Fields

| Field                         | Type   | Description                                        |
| ----------------------------- | ------ | -------------------------------------------------- |
| entity                        | object | Contains the verification result                   |
| entity.id-number              | number | Internal reference ID for the verification request |
| entity.results                | object | Verification match details                         |
| entity.results.key            | string | Result key code (e.g., "result.match")             |
| entity.results.message        | string | Human-readable result message (e.g., "ID Located") |
| entity.summary-result         | object | Overall verification summary                       |
| entity.summary-result.key     | string | Summary key code (e.g., "id.success")              |
| entity.summary-result.message | string | Final verification outcome ("PASS" or "FAIL")      |
