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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=140",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=138",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 139,
    "results": [
        {
            "start": 855314161,
            "stop": 855352843
        },
        {
            "start": 855360816,
            "stop": 855414411
        },
        {
            "start": 855415254,
            "stop": 855417625
        },
        {
            "start": 855459213,
            "stop": 855460700
        },
        {
            "start": 855461011,
            "stop": 855487353
        },
        {
            "start": 855487557,
            "stop": 855488519
        },
        {
            "start": 855488801,
            "stop": 855489699
        },
        {
            "start": 855489932,
            "stop": 855492342
        },
        {
            "start": 855492931,
            "stop": 855498022
        },
        {
            "start": 855499902,
            "stop": 855506670
        },
        {
            "start": 855510875,
            "stop": 855516576
        },
        {
            "start": 855516736,
            "stop": 855520959
        },
        {
            "start": 855521882,
            "stop": 855526487
        },
        {
            "start": 855528831,
            "stop": 855533269
        },
        {
            "start": 855533592,
            "stop": 855544310
        },
        {
            "start": 855545111,
            "stop": 855546457
        },
        {
            "start": 855547258,
            "stop": 855558167
        },
        {
            "start": 855559025,
            "stop": 855592100
        },
        {
            "start": 855592815,
            "stop": 855604707
        },
        {
            "start": 855605553,
            "stop": 855606356
        }
    ]
}