## Get License Info

**get** `/api/v1/admin/license/info`

Get License Info

### Query Parameters

- `include_scopes: optional boolean`

  Whether to include scopes in the response

### Cookie Parameters

- `session: optional string`

### Returns

- `expires_at: string`

  License expiration date

- `status: string`

  License validation status

- `message: optional string`

  License message

- `scopes: optional array of string`

  License scopes

### Example

```http
curl https://api.cloud.llamaindex.ai/api/v1/admin/license/info \
    -H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"
```

#### Response

```json
{
  "expires_at": "2019-12-27T18:11:19.117Z",
  "status": "status",
  "message": "message",
  "scopes": [
    "string"
  ]
}
```
