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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10032",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10030",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10031,
    "results": [
        {
            "start": 872480389,
            "stop": 872480748
        },
        {
            "start": 872480765,
            "stop": 872480796
        },
        {
            "start": 872480893,
            "stop": 872480910
        },
        {
            "start": 872480951,
            "stop": 872480985
        },
        {
            "start": 872481021,
            "stop": 872481351
        },
        {
            "start": 872481387,
            "stop": 872481389
        },
        {
            "start": 872481425,
            "stop": 872481432
        },
        {
            "start": 872481477,
            "stop": 872481481
        },
        {
            "start": 872481573,
            "stop": 872481882
        },
        {
            "start": 872482017,
            "stop": 872482352
        },
        {
            "start": 872482388,
            "stop": 872482805
        },
        {
            "start": 872482855,
            "stop": 872482886
        },
        {
            "start": 872482922,
            "stop": 872483456
        },
        {
            "start": 872483473,
            "stop": 872483514
        },
        {
            "start": 872483553,
            "stop": 872483749
        },
        {
            "start": 872483785,
            "stop": 872483930
        },
        {
            "start": 872483966,
            "stop": 872484162
        },
        {
            "start": 872484198,
            "stop": 872484250
        },
        {
            "start": 872484343,
            "stop": 872484666
        },
        {
            "start": 872484734,
            "stop": 872484848
        }
    ]
}