API Auction house pets

Hello,
I don’t understand how to get pet info in auction house API
For example with this query https://us.api.blizzard.com/data/wow/connected-realm/1146/auctions?namespace=dynamic-us&locale=en_US&access_token=xxxxxxx
I get a lot of id 82800 which is a generic “Pet cage”.

{
      "id": 599056630,
      "item": {
        "id": 82800,
        "context": 0,
        "modifiers": [
          {
            "type": 6,
            "value": 61016
          }
        ],
        "pet_breed_id": 14,
        "pet_level": 25,
        "pet_quality_id": 3,
        "pet_species_id": 1601
      },
      "bid": 179231000,
      "buyout": 210860000,
      "quantity": 1,
      "time_left": "SHORT"
    },

Any recommandation?
Thanks

These are the pet related parameters:

"item": {
        "pet_breed_id": 14,
        "pet_level": 25,
        "pet_quality_id": 3,
        "pet_species_id": 1601
}

Then you can use the pet API to get more information + the modifiers parameters:

If you need more information than that, then that information is missing from the API as far as I’m aware.