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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=91",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=89",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 90,
    "results": [
        {
            "start": 954663229,
            "stop": 954680841
        },
        {
            "start": 954686609,
            "stop": 954694801
        },
        {
            "start": 954695779,
            "stop": 954715782
        },
        {
            "start": 954720345,
            "stop": 954725353
        },
        {
            "start": 954735710,
            "stop": 954749542
        },
        {
            "start": 954753015,
            "stop": 954759660
        },
        {
            "start": 954763427,
            "stop": 954774229
        },
        {
            "start": 954774673,
            "stop": 954775842
        },
        {
            "start": 954779740,
            "stop": 954780889
        },
        {
            "start": 954793868,
            "stop": 954809524
        },
        {
            "start": 954824645,
            "stop": 954847789
        },
        {
            "start": 954852243,
            "stop": 954853790
        },
        {
            "start": 954855237,
            "stop": 954855304
        },
        {
            "start": 954856530,
            "stop": 954857637
        },
        {
            "start": 954858625,
            "stop": 954863207
        },
        {
            "start": 954864740,
            "stop": 954868614
        },
        {
            "start": 954869119,
            "stop": 954872163
        },
        {
            "start": 954873157,
            "stop": 954884401
        },
        {
            "start": 954914596,
            "stop": 954936275
        },
        {
            "start": 954939723,
            "stop": 954949919
        }
    ]
}