GET
/
usage
/
knowledge-base
curl --request GET \
  --url https://api.chatling.ai/v2/usage/knowledge-base \
  --header 'Authorization: Bearer <token>'
{
    "status": "success",
    "data": {
        "used": 1500000,
        "max": 20000000
    }
}

Response

status
string

The status of the request. Will be success if the request was successful, otherwise error.

data
object
{
    "status": "success",
    "data": {
        "used": 1500000,
        "max": 20000000
    }
}