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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=76",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=74",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 75,
    "results": [
        {
            "start": 824948119,
            "stop": 824948689
        },
        {
            "start": 824948799,
            "stop": 824949715
        },
        {
            "start": 824950156,
            "stop": 824950194
        },
        {
            "start": 824950537,
            "stop": 824951797
        },
        {
            "start": 824952586,
            "stop": 824953842
        },
        {
            "start": 824954578,
            "stop": 824955276
        },
        {
            "start": 824955596,
            "stop": 824956015
        },
        {
            "start": 824956125,
            "stop": 824957598
        },
        {
            "start": 824957898,
            "stop": 824958162
        },
        {
            "start": 824958272,
            "stop": 824958944
        },
        {
            "start": 824960556,
            "stop": 824960560
        },
        {
            "start": 824960670,
            "stop": 824960918
        },
        {
            "start": 824961218,
            "stop": 824961429
        },
        {
            "start": 824961975,
            "stop": 824962184
        },
        {
            "start": 824962294,
            "stop": 824962393
        },
        {
            "start": 824962693,
            "stop": 824962906
        },
        {
            "start": 824963278,
            "stop": 824963484
        },
        {
            "start": 824963594,
            "stop": 824963897
        },
        {
            "start": 824964197,
            "stop": 824964401
        },
        {
            "start": 824964511,
            "stop": 824964631
        }
    ]
}