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=360
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=361",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=359",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 360,
    "results": [
        {
            "start": 858455097,
            "stop": 858461926
        },
        {
            "start": 858464008,
            "stop": 858464663
        },
        {
            "start": 858464667,
            "stop": 858464684
        },
        {
            "start": 858464857,
            "stop": 858467804
        },
        {
            "start": 858468962,
            "stop": 858469681
        },
        {
            "start": 858469769,
            "stop": 858489776
        },
        {
            "start": 858489945,
            "stop": 858528282
        },
        {
            "start": 858529261,
            "stop": 858535289
        },
        {
            "start": 858535758,
            "stop": 858556046
        },
        {
            "start": 858557039,
            "stop": 858594447
        },
        {
            "start": 858595354,
            "stop": 858607749
        },
        {
            "start": 858608844,
            "stop": 858617684
        },
        {
            "start": 858619710,
            "stop": 858620362
        },
        {
            "start": 858621523,
            "stop": 858626634
        },
        {
            "start": 858627585,
            "stop": 858643079
        },
        {
            "start": 858643283,
            "stop": 858693552
        },
        {
            "start": 858694127,
            "stop": 858715047
        },
        {
            "start": 858715357,
            "stop": 858717416
        },
        {
            "start": 858717688,
            "stop": 858724968
        },
        {
            "start": 858725316,
            "stop": 858741283
        }
    ]
}