Search notes:

Oracle: DBMS_XPLAN.GET_CURSOR_ROWS

Find an arbitrary pair of sql id and child number:
select sql_id, child_number from v$sql;
Then use the chosen pair to get the excution plan's records:
select * from table(
   dbms_xplan.get_cursor_rows('ayarmuv5us976', 0, 'ADVANCED')
);

Index