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=10111
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=10112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10110",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10111,
    "results": [
        {
            "start": 873400929,
            "stop": 873401149
        },
        {
            "start": 873401269,
            "stop": 873401308
        },
        {
            "start": 873401315,
            "stop": 873401433
        },
        {
            "start": 873401440,
            "stop": 873401902
        },
        {
            "start": 873401909,
            "stop": 873402080
        },
        {
            "start": 873402116,
            "stop": 873402154
        },
        {
            "start": 873402195,
            "stop": 873402318
        },
        {
            "start": 873402326,
            "stop": 873402640
        },
        {
            "start": 873402647,
            "stop": 873402686
        },
        {
            "start": 873402697,
            "stop": 873402731
        },
        {
            "start": 873402739,
            "stop": 873402779
        },
        {
            "start": 873402786,
            "stop": 873402849
        },
        {
            "start": 873402856,
            "stop": 873403014
        },
        {
            "start": 873403062,
            "stop": 873403510
        },
        {
            "start": 873403553,
            "stop": 873403709
        },
        {
            "start": 873403716,
            "stop": 873404016
        },
        {
            "start": 873404024,
            "stop": 873404756
        },
        {
            "start": 873404792,
            "stop": 873404974
        },
        {
            "start": 873404982,
            "stop": 873405008
        },
        {
            "start": 873405016,
            "stop": 873405052
        }
    ]
}