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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=98",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 99,
    "results": [
        {
            "start": 821435568,
            "stop": 821435598
        },
        {
            "start": 821435601,
            "stop": 821435701
        },
        {
            "start": 821435704,
            "stop": 821435711
        },
        {
            "start": 821435714,
            "stop": 821435756
        },
        {
            "start": 821435759,
            "stop": 821435901
        },
        {
            "start": 821435904,
            "stop": 821435958
        },
        {
            "start": 821435961,
            "stop": 821435990
        },
        {
            "start": 821435993,
            "stop": 821436173
        },
        {
            "start": 821436176,
            "stop": 821436187
        },
        {
            "start": 821436190,
            "stop": 821436231
        },
        {
            "start": 821436234,
            "stop": 821436248
        },
        {
            "start": 821436251,
            "stop": 821436263
        },
        {
            "start": 821436266,
            "stop": 821436357
        },
        {
            "start": 821436360,
            "stop": 821436419
        },
        {
            "start": 821436422,
            "stop": 821436591
        },
        {
            "start": 821436594,
            "stop": 821436760
        },
        {
            "start": 821436763,
            "stop": 821436836
        },
        {
            "start": 821436839,
            "stop": 821436844
        },
        {
            "start": 821436847,
            "stop": 821437165
        },
        {
            "start": 821437168,
            "stop": 821437176
        }
    ]
}