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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=6876",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=6874",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 6875,
    "results": [
        {
            "start": 873370957,
            "stop": 873370958
        },
        {
            "start": 873370961,
            "stop": 873370962
        },
        {
            "start": 873370965,
            "stop": 873371010
        },
        {
            "start": 873371014,
            "stop": 873371029
        },
        {
            "start": 873371032,
            "stop": 873371033
        },
        {
            "start": 873371036,
            "stop": 873371065
        },
        {
            "start": 873371068,
            "stop": 873371097
        },
        {
            "start": 873371100,
            "stop": 873371138
        },
        {
            "start": 873371144,
            "stop": 873371250
        },
        {
            "start": 873371253,
            "stop": 873371374
        },
        {
            "start": 873371377,
            "stop": 873371452
        },
        {
            "start": 873371634,
            "stop": 873371777
        },
        {
            "start": 873371780,
            "stop": 873372373
        },
        {
            "start": 873372376,
            "stop": 873372594
        },
        {
            "start": 873372602,
            "stop": 873372845
        },
        {
            "start": 873372848,
            "stop": 873372915
        },
        {
            "start": 873372919,
            "stop": 873373243
        },
        {
            "start": 873373247,
            "stop": 873373405
        },
        {
            "start": 873373409,
            "stop": 873373566
        },
        {
            "start": 873373569,
            "stop": 873374206
        }
    ]
}