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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=110",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 111,
    "results": [
        {
            "start": 830802185,
            "stop": 830804412
        },
        {
            "start": 830804568,
            "stop": 830811416
        },
        {
            "start": 830811945,
            "stop": 830815070
        },
        {
            "start": 830816146,
            "stop": 830827837
        },
        {
            "start": 830828430,
            "stop": 830833445
        },
        {
            "start": 830833845,
            "stop": 830838751
        },
        {
            "start": 830838752,
            "stop": 830838759
        },
        {
            "start": 830838938,
            "stop": 830845749
        },
        {
            "start": 830846261,
            "stop": 830846470
        },
        {
            "start": 830846708,
            "stop": 830855004
        },
        {
            "start": 830855231,
            "stop": 830857489
        },
        {
            "start": 830858447,
            "stop": 830862320
        },
        {
            "start": 830862909,
            "stop": 830869174
        },
        {
            "start": 830869767,
            "stop": 830872539
        },
        {
            "start": 830880868,
            "stop": 830881061
        },
        {
            "start": 830881549,
            "stop": 830882763
        },
        {
            "start": 830883421,
            "stop": 830889168
        },
        {
            "start": 830889794,
            "stop": 830892324
        },
        {
            "start": 830893667,
            "stop": 830895275
        },
        {
            "start": 830896230,
            "stop": 830904482
        }
    ]
}