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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=205",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=203",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 204,
    "results": [
        {
            "start": 843298849,
            "stop": 843302687
        },
        {
            "start": 843303536,
            "stop": 843305593
        },
        {
            "start": 843306403,
            "stop": 843306605
        },
        {
            "start": 843308881,
            "stop": 843309369
        },
        {
            "start": 843310158,
            "stop": 843310314
        },
        {
            "start": 843310498,
            "stop": 843311802
        },
        {
            "start": 843333121,
            "stop": 843334314
        },
        {
            "start": 843367724,
            "stop": 843379513
        },
        {
            "start": 843379518,
            "stop": 843379519
        },
        {
            "start": 843380890,
            "stop": 843385991
        },
        {
            "start": 843386053,
            "stop": 843390313
        },
        {
            "start": 843392311,
            "stop": 843394813
        },
        {
            "start": 843399427,
            "stop": 843401352
        },
        {
            "start": 843402044,
            "stop": 843403621
        },
        {
            "start": 843404497,
            "stop": 843404653
        },
        {
            "start": 843405658,
            "stop": 843405853
        },
        {
            "start": 843409021,
            "stop": 843409813
        },
        {
            "start": 843412568,
            "stop": 843415453
        },
        {
            "start": 843419061,
            "stop": 843423547
        },
        {
            "start": 843425138,
            "stop": 843426718
        }
    ]
}