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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=100",
    "results_count": 199168,
    "results_per_page": 20,
    "num_pages": 9959,
    "page_number": 101,
    "results": [
        {
            "start": 818121751,
            "stop": 818123679
        },
        {
            "start": 818123799,
            "stop": 818123817
        },
        {
            "start": 818123994,
            "stop": 818125712
        },
        {
            "start": 818125832,
            "stop": 818126564
        },
        {
            "start": 818126684,
            "stop": 818127362
        },
        {
            "start": 818127482,
            "stop": 818129117
        },
        {
            "start": 818129141,
            "stop": 818130342
        },
        {
            "start": 818130581,
            "stop": 818130999
        },
        {
            "start": 818131119,
            "stop": 818132477
        },
        {
            "start": 818132597,
            "stop": 818133060
        },
        {
            "start": 818133120,
            "stop": 818137851
        },
        {
            "start": 818137971,
            "stop": 818140154
        },
        {
            "start": 818140274,
            "stop": 818144393
        },
        {
            "start": 818144410,
            "stop": 818144975
        },
        {
            "start": 818146101,
            "stop": 818148207
        },
        {
            "start": 818148224,
            "stop": 818148677
        },
        {
            "start": 818148694,
            "stop": 818149701
        },
        {
            "start": 818149821,
            "stop": 818152449
        },
        {
            "start": 818152466,
            "stop": 818152477
        },
        {
            "start": 818152494,
            "stop": 818152552
        }
    ]
}