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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT2_H1L1/segments?format=api&page=1001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT2_H1L1/segments?format=api&page=999",
    "results_count": 22462,
    "results_per_page": 20,
    "num_pages": 1124,
    "page_number": 1000,
    "results": [
        {
            "start": 870907735,
            "stop": 870908365
        },
        {
            "start": 870908395,
            "stop": 870908665
        },
        {
            "start": 870908846,
            "stop": 870909386
        },
        {
            "start": 870909416,
            "stop": 870909776
        },
        {
            "start": 870909934,
            "stop": 870910294
        },
        {
            "start": 870910324,
            "stop": 870913654
        },
        {
            "start": 870913800,
            "stop": 870914130
        },
        {
            "start": 870914305,
            "stop": 870914845
        },
        {
            "start": 870915013,
            "stop": 870916213
        },
        {
            "start": 870916501,
            "stop": 870916621
        },
        {
            "start": 870916932,
            "stop": 870916992
        },
        {
            "start": 870917441,
            "stop": 870917501
        },
        {
            "start": 870918905,
            "stop": 870918965
        },
        {
            "start": 870919488,
            "stop": 870919608
        },
        {
            "start": 870920455,
            "stop": 870920515
        },
        {
            "start": 870921023,
            "stop": 870921143
        },
        {
            "start": 870921293,
            "stop": 870921443
        },
        {
            "start": 870921753,
            "stop": 870921813
        },
        {
            "start": 870921976,
            "stop": 870922156
        },
        {
            "start": 870923130,
            "stop": 870923190
        }
    ]
}