> ncdump -h S1997262224952.L2_LAC | grep F0
This is mean solar irradiance, band-averaged:
float F0(band number) ;
F0:long_name = "Mean Solar Flux" ;
F0:units = "mW cm^-2 um^-1" ;
Exactly which solar irradiance you need would depend on which quantity you are computing. If it is TOA reflectance, you need instantaneous, band-averaged, solar irradiance. You need to adjust the above F0 for earth-sun distance. This is also in the Level-2:
> ncdump -h S1997262224952.L2_LAC | grep Earth-Sun
:Earth-Sun Distance Correction = 0.9914332628250122 ;
F0' = F0 * Earth-Sun Distance Correction
rho_toa = pi * Ltoa/F0'/cos(solar-zenith)
Note, however, that if it is Rrs from nLw that you wish to compute, then mean, band-centered F0 is what you need.