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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3100",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3101,
    "results": [
        {
            "start": 866761741,
            "stop": 866761829
        },
        {
            "start": 866761833,
            "stop": 866761922
        },
        {
            "start": 866761926,
            "stop": 866761966
        },
        {
            "start": 866761979,
            "stop": 866762009
        },
        {
            "start": 866762013,
            "stop": 866762019
        },
        {
            "start": 866762023,
            "stop": 866762053
        },
        {
            "start": 866762067,
            "stop": 866762082
        },
        {
            "start": 866762100,
            "stop": 866762106
        },
        {
            "start": 866762115,
            "stop": 866762121
        },
        {
            "start": 866762220,
            "stop": 866762247
        },
        {
            "start": 866762310,
            "stop": 866762320
        },
        {
            "start": 866762323,
            "stop": 866762333
        },
        {
            "start": 866763399,
            "stop": 866764440
        },
        {
            "start": 866764560,
            "stop": 866766141
        },
        {
            "start": 866766144,
            "stop": 866766300
        },
        {
            "start": 866766360,
            "stop": 866766659
        },
        {
            "start": 866766662,
            "stop": 866766720
        },
        {
            "start": 866766840,
            "stop": 866766875
        },
        {
            "start": 866766879,
            "stop": 866766930
        },
        {
            "start": 866766990,
            "stop": 866767012
        }
    ]
}