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_CAT2/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_CBCLOW_CAT2/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=255",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 256,
    "results": [
        {
            "start": 821454068,
            "stop": 821454090
        },
        {
            "start": 821454098,
            "stop": 821454157
        },
        {
            "start": 821454165,
            "stop": 821454307
        },
        {
            "start": 821454315,
            "stop": 821454527
        },
        {
            "start": 821454535,
            "stop": 821454554
        },
        {
            "start": 821454562,
            "stop": 821454584
        },
        {
            "start": 821454597,
            "stop": 821454617
        },
        {
            "start": 821454625,
            "stop": 821454628
        },
        {
            "start": 821454636,
            "stop": 821454695
        },
        {
            "start": 821454711,
            "stop": 821454721
        },
        {
            "start": 821454729,
            "stop": 821454731
        },
        {
            "start": 821454745,
            "stop": 821454747
        },
        {
            "start": 821454755,
            "stop": 821454925
        },
        {
            "start": 821454933,
            "stop": 821454958
        },
        {
            "start": 821454966,
            "stop": 821454990
        },
        {
            "start": 821454998,
            "stop": 821455039
        },
        {
            "start": 821455048,
            "stop": 821455230
        },
        {
            "start": 821455238,
            "stop": 821455249
        },
        {
            "start": 821455257,
            "stop": 821455319
        },
        {
            "start": 821455327,
            "stop": 821455434
        }
    ]
}