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/S6/timelines/H1_BURST_CAT2/segments?format=api&page=256
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT2/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT2/segments?format=api&page=255",
    "results_count": 10804,
    "results_per_page": 20,
    "num_pages": 541,
    "page_number": 256,
    "results": [
        {
            "start": 931768809,
            "stop": 931768838
        },
        {
            "start": 931768840,
            "stop": 931768925
        },
        {
            "start": 931768927,
            "stop": 931769105
        },
        {
            "start": 931769107,
            "stop": 931769185
        },
        {
            "start": 931769187,
            "stop": 931769242
        },
        {
            "start": 931769244,
            "stop": 931769657
        },
        {
            "start": 931769659,
            "stop": 931769661
        },
        {
            "start": 931769663,
            "stop": 931769664
        },
        {
            "start": 931769671,
            "stop": 931769675
        },
        {
            "start": 931769677,
            "stop": 931769690
        },
        {
            "start": 931769692,
            "stop": 931769703
        },
        {
            "start": 931769705,
            "stop": 931769709
        },
        {
            "start": 931769713,
            "stop": 931769722
        },
        {
            "start": 931769724,
            "stop": 931769725
        },
        {
            "start": 931769727,
            "stop": 931769729
        },
        {
            "start": 931769731,
            "stop": 931769740
        },
        {
            "start": 931769742,
            "stop": 931769748
        },
        {
            "start": 931769750,
            "stop": 931769907
        },
        {
            "start": 931769912,
            "stop": 931769913
        },
        {
            "start": 931769915,
            "stop": 931769916
        }
    ]
}