> For the complete documentation index, see [llms.txt](https://dar-open-network.gitbook.io/developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dar-open-network.gitbook.io/developers/dar-id/authentication/5.-get-user-dar-id-information.md).

# 5. Get User DAR ID Information

#### **Endpoint:**

```
GET <https://auth.embarky.xyz/onboarding/v1/account/info>
```

#### **Headers:**

| Header         | Value                            |
| -------------- | -------------------------------- |
| Authorization  | Bearer ${ACCESS-TOKEN}           |
| Origin         | The same domain of refirect\_uri |
| Embarky-app-id | Your DAR client ID               |

#### **Example Request:**

```bash
curl -H "Authorization: Bearer ${token}" \\
     -H "Origin: ${refirect_uri}" \\
     -H "Embarky-app-id: ${DAR_CLIENT_ID}" \\
     "<https://auth.embarky.xyz/onboarding/v1/account/info>"
```

#### **Response:**

```json
{
    "did": "user_dar_id",
    // Additional user information fields
}
```
