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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5010",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5008",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5009,
    "results": [
        {
            "start": 872306248,
            "stop": 872306379
        },
        {
            "start": 872306426,
            "stop": 872306649
        },
        {
            "start": 872306709,
            "stop": 872306774
        },
        {
            "start": 872306886,
            "stop": 872308831
        },
        {
            "start": 872308848,
            "stop": 872308863
        },
        {
            "start": 872308913,
            "stop": 872308923
        },
        {
            "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
        }
    ]
}