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=10013
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=10014",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10012",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10013,
    "results": [
        {
            "start": 872308963,
            "stop": 872309023
        },
        {
            "start": 872309136,
            "stop": 872309560
        },
        {
            "start": 872309596,
            "stop": 872310181
        },
        {
            "start": 872310217,
            "stop": 872310249
        },
        {
            "start": 872310306,
            "stop": 872310440
        },
        {
            "start": 872310668,
            "stop": 872311048
        },
        {
            "start": 872311166,
            "stop": 872311181
        },
        {
            "start": 872311198,
            "stop": 872311257
        },
        {
            "start": 872311295,
            "stop": 872311415
        },
        {
            "start": 872311485,
            "stop": 872311504
        },
        {
            "start": 872311540,
            "stop": 872311595
        },
        {
            "start": 872311654,
            "stop": 872311721
        },
        {
            "start": 872311757,
            "stop": 872312130
        },
        {
            "start": 872312167,
            "stop": 872312364
        },
        {
            "start": 872312935,
            "stop": 872313132
        },
        {
            "start": 872313174,
            "stop": 872313335
        },
        {
            "start": 872313352,
            "stop": 872313360
        },
        {
            "start": 872313417,
            "stop": 872313456
        },
        {
            "start": 872313497,
            "stop": 872313499
        },
        {
            "start": 872313570,
            "stop": 872313634
        }
    ]
}