Return the list of parameters on the column headers of any of the event tables.

These parameters are almost always estimated in any analysis and can be used to filter results in the /event-versions endpoint.

Example:

Constrain the values for mass-2-source to be between 3 and 5 solar masses:

/event-versions?min-mass-2-source=3&max-mass-2-source=5

GET /api/v2/default-parameters?format=api
HTTP 200 OK
Allow: OPTIONS, GET
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": null,
    "results_count": 13,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        "mass-1-source",
        "mass-2-source",
        "network-matched-filter-snr",
        "luminosity-distance",
        "chi-eff",
        "total-mass-source",
        "chirp-mass-source",
        "chirp-mass",
        "redshift",
        "far",
        "p-astro",
        "final-mass-source",
        "gps-time"
    ]
}