Skip to content
Product Docs

Get License Info

GET/api/v1/admin/license/info

Get License Info

Query ParametersExpand Collapse
include_scopes: optional boolean

Whether to include scopes in the response

Cookie ParametersExpand Collapse
session: optional string
ReturnsExpand Collapse
expires_at: string

License expiration date

formatdate-time
status: string

License validation status

message: optional string

License message

scopes: optional array of string

License scopes

Get License Info

curl https://api.cloud.llamaindex.ai/api/v1/admin/license/info \
    -H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"
{
  "expires_at": "2019-12-27T18:11:19.117Z",
  "status": "status",
  "message": "message",
  "scopes": [
    "string"
  ]
}
Returns Examples
{
  "expires_at": "2019-12-27T18:11:19.117Z",
  "status": "status",
  "message": "message",
  "scopes": [
    "string"
  ]
}