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=201
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=202",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=200",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 201,
    "results": [
        {
            "start": 842858230,
            "stop": 842881871
        },
        {
            "start": 842883419,
            "stop": 842884873
        },
        {
            "start": 842884884,
            "stop": 842884886
        },
        {
            "start": 842885000,
            "stop": 842886913
        },
        {
            "start": 842887841,
            "stop": 842891087
        },
        {
            "start": 842894305,
            "stop": 842909533
        },
        {
            "start": 842909549,
            "stop": 842909550
        },
        {
            "start": 842909653,
            "stop": 842928108
        },
        {
            "start": 842929960,
            "stop": 842930473
        },
        {
            "start": 842931074,
            "stop": 842937028
        },
        {
            "start": 842937473,
            "stop": 842943433
        },
        {
            "start": 842943439,
            "stop": 842943441
        },
        {
            "start": 842944494,
            "stop": 842957873
        },
        {
            "start": 842958035,
            "stop": 842973067
        },
        {
            "start": 842973351,
            "stop": 842975922
        },
        {
            "start": 843001489,
            "stop": 843005193
        },
        {
            "start": 843005288,
            "stop": 843009207
        },
        {
            "start": 843009325,
            "stop": 843021189
        },
        {
            "start": 843030744,
            "stop": 843031616
        },
        {
            "start": 843033130,
            "stop": 843053293
        }
    ]
}