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=5010
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=5011",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5009",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5010,
    "results": [
        {
            "start": 872312935,
            "stop": 872313132
        },
        {
            "start": 872313174,
            "stop": 872313335
        },
        {
            "start": 872313352,
            "stop": 872313360
        },
        {
            "start": 872313417,
            "stop": 872313456
        },
        {
            "start": 872313497,
            "stop": 872313499
        },
        {
            "start": 872313570,
            "stop": 872313634
        },
        {
            "start": 872313826,
            "stop": 872313894
        },
        {
            "start": 872314080,
            "stop": 872314085
        },
        {
            "start": 872314184,
            "stop": 872314437
        },
        {
            "start": 872314492,
            "stop": 872314506
        },
        {
            "start": 872314671,
            "stop": 872314855
        },
        {
            "start": 872314922,
            "stop": 872314942
        },
        {
            "start": 872315028,
            "stop": 872315031
        },
        {
            "start": 872315110,
            "stop": 872315142
        },
        {
            "start": 872315203,
            "stop": 872315205
        },
        {
            "start": 872315241,
            "stop": 872315626
        },
        {
            "start": 872315778,
            "stop": 872315816
        },
        {
            "start": 872315852,
            "stop": 872315864
        },
        {
            "start": 872315901,
            "stop": 872316715
        },
        {
            "start": 872316751,
            "stop": 872317523
        }
    ]
}