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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=7000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=6998",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 6999,
    "results": [
        {
            "start": 873865227,
            "stop": 873865237
        },
        {
            "start": 873865240,
            "stop": 873865244
        },
        {
            "start": 873865249,
            "stop": 873865266
        },
        {
            "start": 873865269,
            "stop": 873865277
        },
        {
            "start": 873865280,
            "stop": 873865300
        },
        {
            "start": 873865303,
            "stop": 873865306
        },
        {
            "start": 873865309,
            "stop": 873865319
        },
        {
            "start": 873865322,
            "stop": 873865357
        },
        {
            "start": 873865363,
            "stop": 873865370
        },
        {
            "start": 873865376,
            "stop": 873865397
        },
        {
            "start": 873865404,
            "stop": 873865406
        },
        {
            "start": 873865410,
            "stop": 873865426
        },
        {
            "start": 873865429,
            "stop": 873865446
        },
        {
            "start": 873865453,
            "stop": 873865457
        },
        {
            "start": 873865461,
            "stop": 873865473
        },
        {
            "start": 873865476,
            "stop": 873865480
        },
        {
            "start": 873865485,
            "stop": 873865492
        },
        {
            "start": 873865497,
            "stop": 873865508
        },
        {
            "start": 873865513,
            "stop": 873865516
        },
        {
            "start": 873865519,
            "stop": 873865520
        }
    ]
}