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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=127",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 128,
    "results": [
        {
            "start": 833751248,
            "stop": 833752314
        },
        {
            "start": 833752898,
            "stop": 833753168
        },
        {
            "start": 833754400,
            "stop": 833756512
        },
        {
            "start": 833757520,
            "stop": 833771705
        },
        {
            "start": 833772176,
            "stop": 833794778
        },
        {
            "start": 833795239,
            "stop": 833795873
        },
        {
            "start": 833796193,
            "stop": 833798292
        },
        {
            "start": 833798692,
            "stop": 833811456
        },
        {
            "start": 833813220,
            "stop": 833827197
        },
        {
            "start": 833830049,
            "stop": 833832973
        },
        {
            "start": 833832975,
            "stop": 833833849
        },
        {
            "start": 833834512,
            "stop": 833836593
        },
        {
            "start": 833837193,
            "stop": 833839527
        },
        {
            "start": 833840116,
            "stop": 833845546
        },
        {
            "start": 833846466,
            "stop": 833847375
        },
        {
            "start": 833847695,
            "stop": 833850786
        },
        {
            "start": 833851186,
            "stop": 833868583
        },
        {
            "start": 833869355,
            "stop": 833869624
        },
        {
            "start": 833870158,
            "stop": 833885516
        },
        {
            "start": 833887097,
            "stop": 833917751
        }
    ]
}