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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT4/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT4/segments?format=api&page=122",
    "results_count": 88504,
    "results_per_page": 20,
    "num_pages": 4426,
    "page_number": 123,
    "results": [
        {
            "start": 818442297,
            "stop": 818442501
        },
        {
            "start": 818442700,
            "stop": 818442784
        },
        {
            "start": 818443901,
            "stop": 818444009
        },
        {
            "start": 818444264,
            "stop": 818444347
        },
        {
            "start": 818444585,
            "stop": 818444672
        },
        {
            "start": 818445698,
            "stop": 818446025
        },
        {
            "start": 818446912,
            "stop": 818449952
        },
        {
            "start": 818449959,
            "stop": 818449989
        },
        {
            "start": 818449996,
            "stop": 818450271
        },
        {
            "start": 818450278,
            "stop": 818450344
        },
        {
            "start": 818450351,
            "stop": 818450431
        },
        {
            "start": 818450438,
            "stop": 818450511
        },
        {
            "start": 818450518,
            "stop": 818454105
        },
        {
            "start": 818456030,
            "stop": 818457133
        },
        {
            "start": 818457868,
            "stop": 818460079
        },
        {
            "start": 818462871,
            "stop": 818464128
        },
        {
            "start": 818464135,
            "stop": 818464159
        },
        {
            "start": 818464166,
            "stop": 818464270
        },
        {
            "start": 818464277,
            "stop": 818464350
        },
        {
            "start": 818464357,
            "stop": 818464420
        }
    ]
}