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=99
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=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=98",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 99,
    "results": [
        {
            "start": 825980960,
            "stop": 825987649
        },
        {
            "start": 825988803,
            "stop": 825988913
        },
        {
            "start": 825989023,
            "stop": 825989521
        },
        {
            "start": 825989821,
            "stop": 825991598
        },
        {
            "start": 825992014,
            "stop": 826000504
        },
        {
            "start": 826000804,
            "stop": 826002023
        },
        {
            "start": 826002323,
            "stop": 826014462
        },
        {
            "start": 826014572,
            "stop": 826015145
        },
        {
            "start": 826015445,
            "stop": 826015459
        },
        {
            "start": 826015569,
            "stop": 826015738
        },
        {
            "start": 826016038,
            "stop": 826017039
        },
        {
            "start": 826017339,
            "stop": 826045219
        },
        {
            "start": 826045222,
            "stop": 826045228
        },
        {
            "start": 826045231,
            "stop": 826047433
        },
        {
            "start": 826047481,
            "stop": 826047482
        },
        {
            "start": 826047628,
            "stop": 826062218
        },
        {
            "start": 826079504,
            "stop": 826083568
        },
        {
            "start": 826083868,
            "stop": 826090545
        },
        {
            "start": 826090548,
            "stop": 826092500
        },
        {
            "start": 826092610,
            "stop": 826092662
        }
    ]
}