Return the segments for a given timeline for a run.

Query parameters:

  • start=<int>: Initial GPS time of the desired GPS interval.
  • stop=<int>: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
  • pagesize=<int>: Number of results to return per page.
GET /api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=100
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=99",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 100,
    "results": [
        {
            "start": 821437179,
            "stop": 821437180
        },
        {
            "start": 821437183,
            "stop": 821437229
        },
        {
            "start": 821437232,
            "stop": 821437362
        },
        {
            "start": 821437365,
            "stop": 821437431
        },
        {
            "start": 821437434,
            "stop": 821437549
        },
        {
            "start": 821437552,
            "stop": 821437575
        },
        {
            "start": 821437578,
            "stop": 821437606
        },
        {
            "start": 821437609,
            "stop": 821437760
        },
        {
            "start": 821437763,
            "stop": 821437813
        },
        {
            "start": 821437818,
            "stop": 821437827
        },
        {
            "start": 821437830,
            "stop": 821437910
        },
        {
            "start": 821437913,
            "stop": 821437964
        },
        {
            "start": 821437967,
            "stop": 821438124
        },
        {
            "start": 821438127,
            "stop": 821438170
        },
        {
            "start": 821438173,
            "stop": 821438407
        },
        {
            "start": 821438410,
            "stop": 821438897
        },
        {
            "start": 821438900,
            "stop": 821438937
        },
        {
            "start": 821438940,
            "stop": 821438941
        },
        {
            "start": 821438944,
            "stop": 821438973
        },
        {
            "start": 821438979,
            "stop": 821439016
        }
    ]
}