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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10026",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10024",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10025,
    "results": [
        {
            "start": 872412675,
            "stop": 872412998
        },
        {
            "start": 872413034,
            "stop": 872414144
        },
        {
            "start": 872414180,
            "stop": 872414291
        },
        {
            "start": 872414372,
            "stop": 872414468
        },
        {
            "start": 872414528,
            "stop": 872414593
        },
        {
            "start": 872414664,
            "stop": 872414756
        },
        {
            "start": 872414798,
            "stop": 872414813
        },
        {
            "start": 872414870,
            "stop": 872415098
        },
        {
            "start": 872415115,
            "stop": 872417339
        },
        {
            "start": 872417356,
            "stop": 872418375
        },
        {
            "start": 872418411,
            "stop": 872418438
        },
        {
            "start": 872418558,
            "stop": 872419595
        },
        {
            "start": 872419631,
            "stop": 872419761
        },
        {
            "start": 872419821,
            "stop": 872419884
        },
        {
            "start": 872419920,
            "stop": 872420812
        },
        {
            "start": 872420848,
            "stop": 872420922
        },
        {
            "start": 872420958,
            "stop": 872421166
        },
        {
            "start": 872421202,
            "stop": 872421253
        },
        {
            "start": 872421289,
            "stop": 872421301
        },
        {
            "start": 872421337,
            "stop": 872421362
        }
    ]
}