How to query filled order?

on this request:
{{url}}/api/v3/order?symbol=BTCUSDT&orderId=463446&recvWindow=50000&timestamp={{timestamp}}&signature={{signature}}

look this response, not contains the “fills” property
{
“symbol”: “BTCUSDT”,
“orderId”: 463446,
“orderListId”: -1,
“clientOrderId”: “q1CXTaY6b6janFtO70tjNz”,
“price”: “20902.41000000”,
“origQty”: “0.00095700”,
“executedQty”: “0.00095700”,
“cummulativeQuoteQty”: “20.00360637”,
“status”: “FILLED”,
“timeInForce”: “GTC”,
“type”: “LIMIT”,
“side”: “BUY”,
“stopPrice”: “0.00000000”,
“icebergQty”: “0.00000000”,
“time”: 1657204972477,
“updateTime”: 1657204979296,
“isWorking”: true,
“origQuoteOrderQty”: “0.00000000”
}

newOrderRespType ENUM NO Set the response JSON. ACK, RESULT, or FULL; MARKET and LIMIT order types default to FULL, all other orders default to ACK.

“LIMIT” order types default to “FULL”

The Query Order endpoint does not return trade data.

Use the Account Trade List endpoint and pass the order id as a parameter.

https://binance-docs.github.io/apidocs/spot/en/#account-trade-list-user_data

Excellent