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

{
    "next": "https://gwosc.org/api/v2/runs/O4b/timelines/V1_CBC_CAT2/segments?format=api&page=11",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/V1_CBC_CAT2/segments?format=api&page=9",
    "results_count": 4982,
    "results_per_page": 20,
    "num_pages": 250,
    "page_number": 10,
    "results": [
        {
            "start": 1397628011,
            "stop": 1397628042
        },
        {
            "start": 1397628043,
            "stop": 1397628259
        },
        {
            "start": 1397628261,
            "stop": 1397628396
        },
        {
            "start": 1397644372,
            "stop": 1397653542
        },
        {
            "start": 1397653547,
            "stop": 1397668175
        },
        {
            "start": 1397672451,
            "stop": 1397672987
        },
        {
            "start": 1397674943,
            "stop": 1397683862
        },
        {
            "start": 1397683863,
            "stop": 1397683952
        },
        {
            "start": 1397683953,
            "stop": 1397684614
        },
        {
            "start": 1397684615,
            "stop": 1397684646
        },
        {
            "start": 1397684647,
            "stop": 1397684833
        },
        {
            "start": 1397684834,
            "stop": 1397685322
        },
        {
            "start": 1397685323,
            "stop": 1397685558
        },
        {
            "start": 1397685560,
            "stop": 1397685988
        },
        {
            "start": 1397685990,
            "stop": 1397686102
        },
        {
            "start": 1397686103,
            "stop": 1397686308
        },
        {
            "start": 1397686498,
            "stop": 1397686528
        },
        {
            "start": 1397686530,
            "stop": 1397687063
        },
        {
            "start": 1397687064,
            "stop": 1397690399
        },
        {
            "start": 1397690400,
            "stop": 1397690742
        }
    ]
}