Broad-line AGN compilation

Data
Author
Affiliation

Hollis Akins

UT Austin

Published

April 2, 2025

Modified

October 1, 2025

This page maintains an up-to-date (as of October 1, 2025) compilation of high-redshift (\(z>3\)) broad-line AGN discovered and spectroscopically-confirmed with JWST. The table below includes key properties of these objects, as reported in their respective discovery papers, including their redshifts, UV magnitudes, black hole mass, and bolometric luminosity, if available. We also report whether the source would be considered a “little red dot,” following standard color/slope criteria. References are provided numerically. The table is dynamically generated in the code block below, and automatically exported to various formats for further use in analysis or publications.

Show the code
from IPython.display import Markdown
from tabulate import tabulate
from astropy.table import Table

table = Table(names=('ID', 'redshift', 'FWHM', 'logMBH', 'logLbol', 'LRD', 'reference'),
              dtype=(str, float, int, float, float, str, str),
              units=(None,  None, 'km/s', None, 'Msun', 'erg/s', None))

table.add_row(dict(
   ID="Test", 
   redshift=8.502, 
   FWHM=3440,
   logMBH=8.17, 
   logLbol=45.82,
   LRD='Y',
   reference='@kokorev2023c'
))


Markdown(tabulate(table, 
   headers=('Name', 'Redshift', 'FWHM (broad)', r'$\log_{10} M_{\rm BH}$', r'$\log_{10} L_{\rm bol}$', 'LRD?', 'Reference'), 
   colalign=("left", "decimal", "decimal", "decimal", "decimal", "center", "center"),
   floatfmt=".2f"
))
Name Redshift FWHM (broad) \(\log_{10} M_{\rm BH}\) \(\log_{10} L_{\rm bol}\) LRD? Reference
Test 8.50 3440.00 8.17 45.82 Y (1)

You can copy the above python code directly into your scripts/notebooks for easy analysis. You can also find table in the following formats: TeX, FITS, ASCII. To update the compilation, please see the instructions for contribution.

Back to top

References