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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=122",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 123,
    "results": [
        {
            "start": 821510360,
            "stop": 821510370
        },
        {
            "start": 821510373,
            "stop": 821510443
        },
        {
            "start": 821510446,
            "stop": 821510507
        },
        {
            "start": 821510510,
            "stop": 821510523
        },
        {
            "start": 821510526,
            "stop": 821510593
        },
        {
            "start": 821510596,
            "stop": 821510614
        },
        {
            "start": 821510617,
            "stop": 821510675
        },
        {
            "start": 821510678,
            "stop": 821510698
        },
        {
            "start": 821510701,
            "stop": 821510729
        },
        {
            "start": 821510732,
            "stop": 821510747
        },
        {
            "start": 821510750,
            "stop": 821510755
        },
        {
            "start": 821510758,
            "stop": 821510767
        },
        {
            "start": 821510770,
            "stop": 821510771
        },
        {
            "start": 821510774,
            "stop": 821510775
        },
        {
            "start": 821510778,
            "stop": 821510815
        },
        {
            "start": 821510818,
            "stop": 821510865
        },
        {
            "start": 821510868,
            "stop": 821510892
        },
        {
            "start": 821510895,
            "stop": 821510927
        },
        {
            "start": 821510930,
            "stop": 821510944
        },
        {
            "start": 821510947,
            "stop": 821510955
        }
    ]
}