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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=202",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=200",
    "results_count": 7262,
    "results_per_page": 20,
    "num_pages": 364,
    "page_number": 201,
    "results": [
        {
            "start": 843969489,
            "stop": 844007043
        },
        {
            "start": 844009438,
            "stop": 844010681
        },
        {
            "start": 844013369,
            "stop": 844013629
        },
        {
            "start": 844014392,
            "stop": 844015192
        },
        {
            "start": 844015858,
            "stop": 844015993
        },
        {
            "start": 844017419,
            "stop": 844017703
        },
        {
            "start": 844024590,
            "stop": 844024622
        },
        {
            "start": 844031308,
            "stop": 844035193
        },
        {
            "start": 844038999,
            "stop": 844051555
        },
        {
            "start": 844052497,
            "stop": 844097045
        },
        {
            "start": 844098705,
            "stop": 844118904
        },
        {
            "start": 844119154,
            "stop": 844122010
        },
        {
            "start": 844124286,
            "stop": 844199664
        },
        {
            "start": 844202234,
            "stop": 844203177
        },
        {
            "start": 844203290,
            "stop": 844245182
        },
        {
            "start": 844247765,
            "stop": 844310919
        },
        {
            "start": 844333271,
            "stop": 844338731
        },
        {
            "start": 844339203,
            "stop": 844345110
        },
        {
            "start": 844375928,
            "stop": 844423933
        },
        {
            "start": 844427702,
            "stop": 844430893
        }
    ]
}