> 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/4.-get-access-token-details.md).

# 4. Get Access Token Details

#### **Endpoint:**

```
GET <https://$>{AUTH_DOMAIN}/oauth/api/2/token
Authorization: Bearer ${ACCESS-TOKEN}

```

#### **Example Request:**

```bash
curl -H "Authorization: Bearer ${ACCESS-TOKEN}" <https://$>{AUTH_DOMAIN}/token/info
```

#### **Response:**

```json
{
  "client_id": "client_id",
  "expires_at": "2022-08-31 16:00:22.666401 +0800 CST",
  "scope": "Read"
}
```
