Предполагая, что структура представляет собой массив в формате:
x = [
{
"agent_id": 394903921554,
"engagement_count": 0,
"start_time": "2020-06-15T06:00:00.000000Z",
"status": "invisible",
"duration": 901.929878
},
{
"agent_id": 397330457313,
"engagement_count": 0,
"start_time": "2020-06-15T06:00:00.000000Z",
"status": "invisible",
"duration": 901.929878
},
{
"agent_id": 401565578994,
"engagement_count": 0,
"start_time": "2020-06-15T06:00:00.000000Z",
"status": "invisible",
"duration": 4.664595
},
{
"agent_id": 394903921554,
"engagement_count": 0,
"start_time": "2020-06-15T06:00:11.000000Z",
"status": "online",
"duration": 901.929878
}
]
Вы можете сделать следующее:
[item for item in x if item['agent_id'] == 394903921554]