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_CW_CAT1/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/S6/timelines/H1_CW_CAT1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CW_CAT1/segments?format=api&page=122",
    "results_count": 6331,
    "results_per_page": 20,
    "num_pages": 317,
    "page_number": 123,
    "results": [
        {
            "start": 953238955,
            "stop": 953238970
        },
        {
            "start": 953238973,
            "stop": 953239004
        },
        {
            "start": 953239007,
            "stop": 953239013
        },
        {
            "start": 953239016,
            "stop": 953239100
        },
        {
            "start": 953239105,
            "stop": 953239109
        },
        {
            "start": 953239111,
            "stop": 953239113
        },
        {
            "start": 953239117,
            "stop": 953240780
        },
        {
            "start": 953240784,
            "stop": 953240835
        },
        {
            "start": 953240844,
            "stop": 953240856
        },
        {
            "start": 953240861,
            "stop": 953240863
        },
        {
            "start": 953240868,
            "stop": 953240872
        },
        {
            "start": 953240875,
            "stop": 953241287
        },
        {
            "start": 953241290,
            "stop": 953241321
        },
        {
            "start": 953241325,
            "stop": 953241340
        },
        {
            "start": 953241352,
            "stop": 953241356
        },
        {
            "start": 953241359,
            "stop": 953241397
        },
        {
            "start": 953241405,
            "stop": 953241423
        },
        {
            "start": 953241428,
            "stop": 953241433
        },
        {
            "start": 953241441,
            "stop": 953241449
        },
        {
            "start": 953241452,
            "stop": 953241466
        }
    ]
}