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=9980
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=9981",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9979",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9980,
    "results": [
        {
            "start": 872011024,
            "stop": 872011069
        },
        {
            "start": 872011086,
            "stop": 872011315
        },
        {
            "start": 872011332,
            "stop": 872011445
        },
        {
            "start": 872011462,
            "stop": 872011466
        },
        {
            "start": 872011483,
            "stop": 872011486
        },
        {
            "start": 872011503,
            "stop": 872011720
        },
        {
            "start": 872011877,
            "stop": 872011983
        },
        {
            "start": 872012000,
            "stop": 872012028
        },
        {
            "start": 872012045,
            "stop": 872012182
        },
        {
            "start": 872012302,
            "stop": 872012320
        },
        {
            "start": 872012337,
            "stop": 872012814
        },
        {
            "start": 872012831,
            "stop": 872013066
        },
        {
            "start": 872013083,
            "stop": 872013340
        },
        {
            "start": 872013357,
            "stop": 872013916
        },
        {
            "start": 872013933,
            "stop": 872014144
        },
        {
            "start": 872014161,
            "stop": 872014307
        },
        {
            "start": 872014324,
            "stop": 872014507
        },
        {
            "start": 872014627,
            "stop": 872014940
        },
        {
            "start": 872014957,
            "stop": 872015245
        },
        {
            "start": 872015262,
            "stop": 872015614
        }
    ]
}