Return all events from a given catalog.

Query parameters:

  • include-default-parameters: if true or empty, include a list with the preferred values for default parameters.
  • pagesize=<int>: Number of results to return per page.

Rel URLs:

  • Follow parameters_url for a list of parameter estimations.
  • Follow timelines_url for a list of timelines and segments.
GET /api/v2/catalogs/GWTC-5.0/events?format=api&include-default-parameters=true&page=9
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/catalogs/GWTC-5.0/events?format=api&include-default-parameters=true&page=8",
    "results_count": 161,
    "results_per_page": 20,
    "num_pages": 9,
    "page_number": 9,
    "results": [
        {
            "name": "GW240406_062847",
            "shortName": "GW240406_062847-v1",
            "gps": 1396420145.9,
            "version": 1,
            "catalog": "GWTC-5.0",
            "detectors": [
                "H1",
                "L1"
            ],
            "detail_url": "https://gwosc.org/api/v2/event-versions/GW240406_062847-v1?format=api",
            "default_parameters": [
                {
                    "name": "far",
                    "unit": "1/yr",
                    "description": "na",
                    "best": 1e-05,
                    "upper_error": null,
                    "lower_error": null,
                    "is_upper_limit": true,
                    "is_lower_limit": false,
                    "decimal_places": 6
                },
                {
                    "name": "p_astro",
                    "unit": "",
                    "description": "na",
                    "best": 0.99,
                    "upper_error": null,
                    "lower_error": null,
                    "is_upper_limit": false,
                    "is_lower_limit": true,
                    "decimal_places": 2
                },
                {
                    "name": "network_matched_filter_snr",
                    "unit": "",
                    "description": "na",
                    "best": 11.3,
                    "upper_error": null,
                    "lower_error": null,
                    "is_upper_limit": false,
                    "is_lower_limit": false,
                    "decimal_places": 1
                }
            ]
        }
    ]
}