Fail to find current usage of the ip limit from response header of api with respect to "RAW_REQUESTS" in section of "rateLimits" of exchangeInfo

I get limits info from api/v3/exchangeInfo and see “RAW_REQUESTS” in the “rateLimits” section. But I could not find the corresponding current usage of this kind of limit from response header of api.

  1. info from sections in api/v3/exchangeInfo
        {
            "rateLimitType":"RAW_REQUESTS",
            "interval":"MINUTE",
            "intervalNum":5,
            "limit":6100
        }
  1. info from repsonse header of spot api
        x-mbx-used-weight
        x-mbx-used-weight-1m
        x-mbx-order-count-10s
        x-mbx-order-count-1d

RAW_REQUESTS is for the number of requests over X minutes regardless of weight, you can easily use it for local limit tracking.
However, knowing the used requests weights is not so direct, since different requests have different weights, therefore header x-mbx-used-weight is given as response header to help the tracking.