API responses not returning `result_info`

I’m not seeing result_info in my API responses. Anyone know how to get this?

I do see result, success, errors and messages so I am sure I am making the call with the correct credentials.

e.g.

curl "https://api.cloudflare.com/client/v4/accounts/[my_account]/images/v1/variants?per_page=10&page=1" \
     -H 'Content-Type: application/json' \
     -H 'Authorization: Bearer [my_token]'    
{
  "result": {
    "variants": {
      "folklens": {
        "id": "folklens",
        "options": {
          "width": 750,
          "height": 10000,
          "fit": "contain",
          "metadata": "none",
          "blur": 0
        },
        "neverRequireSignedURLs": true
      },
      "consensusProfilePhoto": {
        "id": "consensusProfilePhoto",
        "options": {
          "fit": "cover",
          "height": 128,
          "metadata": "none",
          "width": 128
        },
        "neverRequireSignedURLs": false
      }
    }
  },
  "success": true,
  "errors": [],
  "messages": []
}