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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=501",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2/segments?format=api&page=499",
    "results_count": 11686,
    "results_per_page": 20,
    "num_pages": 585,
    "page_number": 500,
    "results": [
        {
            "start": 867292326,
            "stop": 867298714
        },
        {
            "start": 867300102,
            "stop": 867309069
        },
        {
            "start": 867309072,
            "stop": 867319497
        },
        {
            "start": 867319873,
            "stop": 867344496
        },
        {
            "start": 867344624,
            "stop": 867353117
        },
        {
            "start": 867357340,
            "stop": 867364027
        },
        {
            "start": 867367505,
            "stop": 867378792
        },
        {
            "start": 867378902,
            "stop": 867381597
        },
        {
            "start": 867381897,
            "stop": 867421980
        },
        {
            "start": 867422045,
            "stop": 867422077
        },
        {
            "start": 867422085,
            "stop": 867428667
        },
        {
            "start": 867428673,
            "stop": 867434920
        },
        {
            "start": 867434925,
            "stop": 867437217
        },
        {
            "start": 867437223,
            "stop": 867439151
        },
        {
            "start": 867439153,
            "stop": 867440836
        },
        {
            "start": 867441038,
            "stop": 867446352
        },
        {
            "start": 867446360,
            "stop": 867446377
        },
        {
            "start": 867446383,
            "stop": 867446405
        },
        {
            "start": 867446415,
            "stop": 867446452
        },
        {
            "start": 867446458,
            "stop": 867449272
        }
    ]
}