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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=99",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 100,
    "results": [
        {
            "start": 826092962,
            "stop": 826093659
        },
        {
            "start": 826093769,
            "stop": 826093901
        },
        {
            "start": 826094201,
            "stop": 826111613
        },
        {
            "start": 826111723,
            "stop": 826112205
        },
        {
            "start": 826112764,
            "stop": 826119809
        },
        {
            "start": 826119811,
            "stop": 826127321
        },
        {
            "start": 826127431,
            "stop": 826128734
        },
        {
            "start": 826129034,
            "stop": 826129166
        },
        {
            "start": 826129654,
            "stop": 826135512
        },
        {
            "start": 826135622,
            "stop": 826136345
        },
        {
            "start": 826136645,
            "stop": 826137074
        },
        {
            "start": 826137476,
            "stop": 826142164
        },
        {
            "start": 826142584,
            "stop": 826143752
        },
        {
            "start": 826144181,
            "stop": 826169183
        },
        {
            "start": 826169293,
            "stop": 826171109
        },
        {
            "start": 826171409,
            "stop": 826172386
        },
        {
            "start": 826172496,
            "stop": 826172598
        },
        {
            "start": 826173089,
            "stop": 826174676
        },
        {
            "start": 826174679,
            "stop": 826176771
        },
        {
            "start": 826194368,
            "stop": 826194387
        }
    ]
}