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=250
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=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=249",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 250,
    "results": [
        {
            "start": 849473773,
            "stop": 849479687
        },
        {
            "start": 849480886,
            "stop": 849488893
        },
        {
            "start": 849488911,
            "stop": 849488912
        },
        {
            "start": 849489353,
            "stop": 849490206
        },
        {
            "start": 849490281,
            "stop": 849491713
        },
        {
            "start": 849491715,
            "stop": 849491716
        },
        {
            "start": 849492561,
            "stop": 849514753
        },
        {
            "start": 849514770,
            "stop": 849514771
        },
        {
            "start": 849516133,
            "stop": 849526453
        },
        {
            "start": 849526476,
            "stop": 849526477
        },
        {
            "start": 849528013,
            "stop": 849531898
        },
        {
            "start": 849533277,
            "stop": 849534914
        },
        {
            "start": 849536210,
            "stop": 849542953
        },
        {
            "start": 849542967,
            "stop": 849542968
        },
        {
            "start": 849543175,
            "stop": 849544813
        },
        {
            "start": 849547237,
            "stop": 849552373
        },
        {
            "start": 849566727,
            "stop": 849567613
        },
        {
            "start": 849567655,
            "stop": 849567656
        },
        {
            "start": 849568072,
            "stop": 849601933
        },
        {
            "start": 849601969,
            "stop": 849601970
        }
    ]
}