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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3099",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3100,
    "results": [
        {
            "start": 866726924,
            "stop": 866733399
        },
        {
            "start": 866733402,
            "stop": 866736126
        },
        {
            "start": 866738092,
            "stop": 866738245
        },
        {
            "start": 866739202,
            "stop": 866739840
        },
        {
            "start": 866739960,
            "stop": 866745000
        },
        {
            "start": 866745060,
            "stop": 866748097
        },
        {
            "start": 866748105,
            "stop": 866748120
        },
        {
            "start": 866748180,
            "stop": 866751660
        },
        {
            "start": 866751720,
            "stop": 866754540
        },
        {
            "start": 866754660,
            "stop": 866755277
        },
        {
            "start": 866755281,
            "stop": 866755560
        },
        {
            "start": 866755680,
            "stop": 866755740
        },
        {
            "start": 866755800,
            "stop": 866757060
        },
        {
            "start": 866757120,
            "stop": 866758800
        },
        {
            "start": 866758860,
            "stop": 866759460
        },
        {
            "start": 866759640,
            "stop": 866760000
        },
        {
            "start": 866760060,
            "stop": 866760540
        },
        {
            "start": 866760600,
            "stop": 866760705
        },
        {
            "start": 866760708,
            "stop": 866761070
        },
        {
            "start": 866761074,
            "stop": 866761737
        }
    ]
}