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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=344",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 345,
    "results": [
        {
            "start": 857734911,
            "stop": 857734940
        },
        {
            "start": 857734944,
            "stop": 857734969
        },
        {
            "start": 857734983,
            "stop": 857735125
        },
        {
            "start": 857735134,
            "stop": 857735160
        },
        {
            "start": 857735163,
            "stop": 857735164
        },
        {
            "start": 857735221,
            "stop": 857735337
        },
        {
            "start": 857735341,
            "stop": 857735377
        },
        {
            "start": 857735381,
            "stop": 857735386
        },
        {
            "start": 857735404,
            "stop": 857735430
        },
        {
            "start": 857735501,
            "stop": 857735514
        },
        {
            "start": 857735518,
            "stop": 857735530
        },
        {
            "start": 857735535,
            "stop": 857735539
        },
        {
            "start": 857735543,
            "stop": 857735549
        },
        {
            "start": 857735552,
            "stop": 857735569
        },
        {
            "start": 857735573,
            "stop": 857735587
        },
        {
            "start": 857735591,
            "stop": 857735647
        },
        {
            "start": 857735651,
            "stop": 857735659
        },
        {
            "start": 857738310,
            "stop": 857738994
        },
        {
            "start": 857739126,
            "stop": 857739144
        },
        {
            "start": 857739148,
            "stop": 857739154
        }
    ]
}