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=42
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=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=41",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 42,
    "results": [
        {
            "start": 821127688,
            "stop": 821127757
        },
        {
            "start": 821127867,
            "stop": 821128351
        },
        {
            "start": 821128548,
            "stop": 821129035
        },
        {
            "start": 821129436,
            "stop": 821130771
        },
        {
            "start": 821131676,
            "stop": 821132550
        },
        {
            "start": 821132850,
            "stop": 821133531
        },
        {
            "start": 821134929,
            "stop": 821136837
        },
        {
            "start": 821137722,
            "stop": 821138157
        },
        {
            "start": 821138745,
            "stop": 821150929
        },
        {
            "start": 821151351,
            "stop": 821168269
        },
        {
            "start": 821168271,
            "stop": 821182369
        },
        {
            "start": 821213389,
            "stop": 821214483
        },
        {
            "start": 821214511,
            "stop": 821216589
        },
        {
            "start": 821216906,
            "stop": 821216974
        },
        {
            "start": 821219445,
            "stop": 821221356
        },
        {
            "start": 821221359,
            "stop": 821221360
        },
        {
            "start": 821221574,
            "stop": 821222080
        },
        {
            "start": 821224156,
            "stop": 821227281
        },
        {
            "start": 821227449,
            "stop": 821227473
        },
        {
            "start": 821227504,
            "stop": 821232433
        }
    ]
}