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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=255",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=253",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 254,
    "results": [
        {
            "start": 848304939,
            "stop": 848305031
        },
        {
            "start": 848305060,
            "stop": 848305089
        },
        {
            "start": 848305104,
            "stop": 848305138
        },
        {
            "start": 848305143,
            "stop": 848305148
        },
        {
            "start": 848305152,
            "stop": 848305177
        },
        {
            "start": 848305181,
            "stop": 848305457
        },
        {
            "start": 848305461,
            "stop": 848305549
        },
        {
            "start": 848305557,
            "stop": 848305563
        },
        {
            "start": 848305567,
            "stop": 848305603
        },
        {
            "start": 848305616,
            "stop": 848305666
        },
        {
            "start": 848305679,
            "stop": 848305695
        },
        {
            "start": 848305699,
            "stop": 848305709
        },
        {
            "start": 848305724,
            "stop": 848305802
        },
        {
            "start": 848305820,
            "stop": 848305850
        },
        {
            "start": 848305854,
            "stop": 848305860
        },
        {
            "start": 848305864,
            "stop": 848305890
        },
        {
            "start": 848305893,
            "stop": 848305923
        },
        {
            "start": 848305927,
            "stop": 848305943
        },
        {
            "start": 848305947,
            "stop": 848307458
        },
        {
            "start": 848307462,
            "stop": 848307539
        }
    ]
}