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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=255",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 256,
    "results": [
        {
            "start": 850205574,
            "stop": 850221611
        },
        {
            "start": 850222807,
            "stop": 850227913
        },
        {
            "start": 850227942,
            "stop": 850227943
        },
        {
            "start": 850229512,
            "stop": 850229704
        },
        {
            "start": 850230584,
            "stop": 850232879
        },
        {
            "start": 850234351,
            "stop": 850236894
        },
        {
            "start": 850237383,
            "stop": 850239493
        },
        {
            "start": 850242000,
            "stop": 850242073
        },
        {
            "start": 850242732,
            "stop": 850243333
        },
        {
            "start": 850243370,
            "stop": 850243371
        },
        {
            "start": 850243513,
            "stop": 850243633
        },
        {
            "start": 850245577,
            "stop": 850247173
        },
        {
            "start": 850247214,
            "stop": 850247215
        },
        {
            "start": 850247293,
            "stop": 850251893
        },
        {
            "start": 850253500,
            "stop": 850258753
        },
        {
            "start": 850258785,
            "stop": 850258786
        },
        {
            "start": 850258933,
            "stop": 850258993
        },
        {
            "start": 850259035,
            "stop": 850259037
        },
        {
            "start": 850259113,
            "stop": 850271102
        },
        {
            "start": 850271168,
            "stop": 850287613
        }
    ]
}