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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8110",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8111,
    "results": [
        {
            "start": 872718874,
            "stop": 872718958
        },
        {
            "start": 872718975,
            "stop": 872719025
        },
        {
            "start": 872719042,
            "stop": 872719242
        },
        {
            "start": 872719259,
            "stop": 872720528
        },
        {
            "start": 872720714,
            "stop": 872721006
        },
        {
            "start": 872721248,
            "stop": 872721251
        },
        {
            "start": 872721270,
            "stop": 872721651
        },
        {
            "start": 872721669,
            "stop": 872722140
        },
        {
            "start": 872722406,
            "stop": 872722753
        },
        {
            "start": 872722928,
            "stop": 872722994
        },
        {
            "start": 872723152,
            "stop": 872723529
        },
        {
            "start": 872723546,
            "stop": 872723830
        },
        {
            "start": 872723847,
            "stop": 872724081
        },
        {
            "start": 872724098,
            "stop": 872724214
        },
        {
            "start": 872724233,
            "stop": 872724371
        },
        {
            "start": 872724389,
            "stop": 872725312
        },
        {
            "start": 872725330,
            "stop": 872725680
        },
        {
            "start": 872726700,
            "stop": 872726891
        },
        {
            "start": 872726908,
            "stop": 872727048
        },
        {
            "start": 872727065,
            "stop": 872727081
        }
    ]
}