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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT2/segments?format=api&page=2099",
    "results_count": 47811,
    "results_per_page": 20,
    "num_pages": 2391,
    "page_number": 2100,
    "results": [
        {
            "start": 871846434,
            "stop": 871846549
        },
        {
            "start": 871846572,
            "stop": 871846592
        },
        {
            "start": 871846614,
            "stop": 871846619
        },
        {
            "start": 871846638,
            "stop": 871846691
        },
        {
            "start": 871846710,
            "stop": 871846737
        },
        {
            "start": 871846756,
            "stop": 871847197
        },
        {
            "start": 871847216,
            "stop": 871847710
        },
        {
            "start": 871847740,
            "stop": 871848026
        },
        {
            "start": 871848045,
            "stop": 871848279
        },
        {
            "start": 871848298,
            "stop": 871848313
        },
        {
            "start": 871848337,
            "stop": 871848343
        },
        {
            "start": 871848362,
            "stop": 871848400
        },
        {
            "start": 871848434,
            "stop": 871848435
        },
        {
            "start": 871848516,
            "stop": 871848568
        },
        {
            "start": 871848587,
            "stop": 871848806
        },
        {
            "start": 871848825,
            "stop": 871848925
        },
        {
            "start": 871848944,
            "stop": 871848952
        },
        {
            "start": 871848971,
            "stop": 871848997
        },
        {
            "start": 871849016,
            "stop": 871849028
        },
        {
            "start": 871849048,
            "stop": 871849076
        }
    ]
}