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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9962",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9960",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9961,
    "results": [
        {
            "start": 871820178,
            "stop": 871820236
        },
        {
            "start": 871820423,
            "stop": 871820704
        },
        {
            "start": 871820740,
            "stop": 871820759
        },
        {
            "start": 871820817,
            "stop": 871820822
        },
        {
            "start": 871820865,
            "stop": 871820895
        },
        {
            "start": 871820977,
            "stop": 871820984
        },
        {
            "start": 871821079,
            "stop": 871821123
        },
        {
            "start": 871821159,
            "stop": 871821188
        },
        {
            "start": 871821289,
            "stop": 871821320
        },
        {
            "start": 871821337,
            "stop": 871821354
        },
        {
            "start": 871821391,
            "stop": 871821470
        },
        {
            "start": 871821525,
            "stop": 871821540
        },
        {
            "start": 871821601,
            "stop": 871821642
        },
        {
            "start": 871821678,
            "stop": 871821705
        },
        {
            "start": 871821770,
            "stop": 871821800
        },
        {
            "start": 871821836,
            "stop": 871821859
        },
        {
            "start": 871821895,
            "stop": 871821907
        },
        {
            "start": 871821944,
            "stop": 871821994
        },
        {
            "start": 871822251,
            "stop": 871822273
        },
        {
            "start": 871822402,
            "stop": 871822434
        }
    ]
}