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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=199",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 200,
    "results": [
        {
            "start": 848675936,
            "stop": 848684633
        },
        {
            "start": 848685158,
            "stop": 848691412
        },
        {
            "start": 848693368,
            "stop": 848701425
        },
        {
            "start": 848703576,
            "stop": 848715016
        },
        {
            "start": 848715030,
            "stop": 848715354
        },
        {
            "start": 848715366,
            "stop": 848715382
        },
        {
            "start": 848715385,
            "stop": 848715387
        },
        {
            "start": 848715390,
            "stop": 848718748
        },
        {
            "start": 848718751,
            "stop": 848718752
        },
        {
            "start": 848718798,
            "stop": 848728157
        },
        {
            "start": 848728168,
            "stop": 848729314
        },
        {
            "start": 848729317,
            "stop": 848729318
        },
        {
            "start": 848729360,
            "stop": 848729365
        },
        {
            "start": 848729370,
            "stop": 848732610
        },
        {
            "start": 848732613,
            "stop": 848732614
        },
        {
            "start": 848732636,
            "stop": 848732638
        },
        {
            "start": 848732647,
            "stop": 848732813
        },
        {
            "start": 848732850,
            "stop": 848732853
        },
        {
            "start": 848732860,
            "stop": 848732897
        },
        {
            "start": 848732911,
            "stop": 848732937
        }
    ]
}