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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=6380",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=6378",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 6379,
    "results": [
        {
            "start": 873526147,
            "stop": 873526314
        },
        {
            "start": 873526315,
            "stop": 873526509
        },
        {
            "start": 873526511,
            "stop": 873526595
        },
        {
            "start": 873526596,
            "stop": 873526825
        },
        {
            "start": 873526826,
            "stop": 873527203
        },
        {
            "start": 873527205,
            "stop": 873527717
        },
        {
            "start": 873527718,
            "stop": 873528155
        },
        {
            "start": 873528156,
            "stop": 873528337
        },
        {
            "start": 873528338,
            "stop": 873528803
        },
        {
            "start": 873528804,
            "stop": 873529043
        },
        {
            "start": 873529044,
            "stop": 873529494
        },
        {
            "start": 873529495,
            "stop": 873529688
        },
        {
            "start": 873529689,
            "stop": 873529840
        },
        {
            "start": 873529841,
            "stop": 873530016
        },
        {
            "start": 873530017,
            "stop": 873530373
        },
        {
            "start": 873530375,
            "stop": 873530548
        },
        {
            "start": 873530550,
            "stop": 873530809
        },
        {
            "start": 873530810,
            "stop": 873531014
        },
        {
            "start": 873531015,
            "stop": 873531493
        },
        {
            "start": 873531495,
            "stop": 873531735
        }
    ]
}