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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT4/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT4/segments?format=api&page=249",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 250,
    "results": [
        {
            "start": 931583175,
            "stop": 931583211
        },
        {
            "start": 931583212,
            "stop": 931583272
        },
        {
            "start": 931583273,
            "stop": 931583302
        },
        {
            "start": 931583303,
            "stop": 931583322
        },
        {
            "start": 931583323,
            "stop": 931583342
        },
        {
            "start": 931583343,
            "stop": 931583408
        },
        {
            "start": 931583409,
            "stop": 931583520
        },
        {
            "start": 931583521,
            "stop": 931583655
        },
        {
            "start": 931583656,
            "stop": 931583665
        },
        {
            "start": 931583666,
            "stop": 931583670
        },
        {
            "start": 931583671,
            "stop": 931583727
        },
        {
            "start": 931583728,
            "stop": 931583840
        },
        {
            "start": 931583841,
            "stop": 931583843
        },
        {
            "start": 931583844,
            "stop": 931583855
        },
        {
            "start": 931583856,
            "stop": 931583932
        },
        {
            "start": 931583935,
            "stop": 931583990
        },
        {
            "start": 931583991,
            "stop": 931583995
        },
        {
            "start": 931583996,
            "stop": 931584016
        },
        {
            "start": 931584017,
            "stop": 931584125
        },
        {
            "start": 931584126,
            "stop": 931584130
        }
    ]
}