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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=141",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=139",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 140,
    "results": [
        {
            "start": 855607503,
            "stop": 855608946
        },
        {
            "start": 855609206,
            "stop": 855609915
        },
        {
            "start": 855619749,
            "stop": 855674549
        },
        {
            "start": 855674780,
            "stop": 855676252
        },
        {
            "start": 855676300,
            "stop": 855684771
        },
        {
            "start": 855685883,
            "stop": 855689338
        },
        {
            "start": 855693274,
            "stop": 855706445
        },
        {
            "start": 855710410,
            "stop": 855712869
        },
        {
            "start": 855714035,
            "stop": 855778740
        },
        {
            "start": 855780880,
            "stop": 855783263
        },
        {
            "start": 855784315,
            "stop": 855810742
        },
        {
            "start": 855811426,
            "stop": 855862444
        },
        {
            "start": 855863749,
            "stop": 855864886
        },
        {
            "start": 855865787,
            "stop": 855867698
        },
        {
            "start": 855867944,
            "stop": 855870423
        },
        {
            "start": 855872992,
            "stop": 855873484
        },
        {
            "start": 855873759,
            "stop": 855874343
        },
        {
            "start": 855874519,
            "stop": 855875875
        },
        {
            "start": 855876020,
            "stop": 855877585
        },
        {
            "start": 855877702,
            "stop": 855880386
        }
    ]
}