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=42
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=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=41",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 42,
    "results": [
        {
            "start": 816424202,
            "stop": 816424205
        },
        {
            "start": 816424210,
            "stop": 816424213
        },
        {
            "start": 816424217,
            "stop": 816424488
        },
        {
            "start": 816424492,
            "stop": 816424577
        },
        {
            "start": 816424581,
            "stop": 816424585
        },
        {
            "start": 816424589,
            "stop": 816424937
        },
        {
            "start": 816424942,
            "stop": 816424974
        },
        {
            "start": 816424979,
            "stop": 816424992
        },
        {
            "start": 816424997,
            "stop": 816425403
        },
        {
            "start": 816425407,
            "stop": 816426027
        },
        {
            "start": 816426030,
            "stop": 816426036
        },
        {
            "start": 816426041,
            "stop": 816426164
        },
        {
            "start": 816426170,
            "stop": 816426450
        },
        {
            "start": 816427424,
            "stop": 816427433
        },
        {
            "start": 816427462,
            "stop": 816427586
        },
        {
            "start": 816427596,
            "stop": 816427633
        },
        {
            "start": 816427640,
            "stop": 816427703
        },
        {
            "start": 816427708,
            "stop": 816427710
        },
        {
            "start": 816428550,
            "stop": 816428644
        },
        {
            "start": 816428650,
            "stop": 816428996
        }
    ]
}