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=60
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=61",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=59",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 60,
    "results": [
        {
            "start": 944284943,
            "stop": 944287377
        },
        {
            "start": 944288647,
            "stop": 944290040
        },
        {
            "start": 944293669,
            "stop": 944293788
        },
        {
            "start": 944294833,
            "stop": 944295054
        },
        {
            "start": 944297324,
            "stop": 944298486
        },
        {
            "start": 944299287,
            "stop": 944299647
        },
        {
            "start": 944301141,
            "stop": 944301474
        },
        {
            "start": 944311383,
            "stop": 944311741
        },
        {
            "start": 944312854,
            "stop": 944313258
        },
        {
            "start": 944610994,
            "stop": 944611936
        },
        {
            "start": 944617042,
            "stop": 944617243
        },
        {
            "start": 944618890,
            "stop": 944621100
        },
        {
            "start": 944622021,
            "stop": 944622304
        },
        {
            "start": 944623469,
            "stop": 944623676
        },
        {
            "start": 944626566,
            "stop": 944629981
        },
        {
            "start": 944631813,
            "stop": 944633027
        },
        {
            "start": 944634318,
            "stop": 944635291
        },
        {
            "start": 944642492,
            "stop": 944644309
        },
        {
            "start": 944645059,
            "stop": 944646693
        },
        {
            "start": 944648210,
            "stop": 944648724
        }
    ]
}