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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=255",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 256,
    "results": [
        {
            "start": 848308765,
            "stop": 848308801
        },
        {
            "start": 848308810,
            "stop": 848308825
        },
        {
            "start": 848308829,
            "stop": 848308835
        },
        {
            "start": 848308852,
            "stop": 848308882
        },
        {
            "start": 848308885,
            "stop": 848308901
        },
        {
            "start": 848308905,
            "stop": 848308920
        },
        {
            "start": 848308934,
            "stop": 848308939
        },
        {
            "start": 848308948,
            "stop": 848308959
        },
        {
            "start": 848308967,
            "stop": 848308978
        },
        {
            "start": 848308986,
            "stop": 848308993
        },
        {
            "start": 848308997,
            "stop": 848309007
        },
        {
            "start": 848309016,
            "stop": 848309055
        },
        {
            "start": 848309059,
            "stop": 848309152
        },
        {
            "start": 848309156,
            "stop": 848309176
        },
        {
            "start": 848309180,
            "stop": 848309269
        },
        {
            "start": 848309287,
            "stop": 848309293
        },
        {
            "start": 848309307,
            "stop": 848309324
        },
        {
            "start": 848309356,
            "stop": 848309362
        },
        {
            "start": 848309371,
            "stop": 848309376
        },
        {
            "start": 848309386,
            "stop": 848309396
        }
    ]
}