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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=51",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=49",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 50,
    "results": [
        {
            "start": 1370266546,
            "stop": 1370267695
        },
        {
            "start": 1370267697,
            "stop": 1370268339
        },
        {
            "start": 1370268341,
            "stop": 1370269190
        },
        {
            "start": 1370269191,
            "stop": 1370269270
        },
        {
            "start": 1370269275,
            "stop": 1370272222
        },
        {
            "start": 1370272226,
            "stop": 1370272589
        },
        {
            "start": 1370272591,
            "stop": 1370272786
        },
        {
            "start": 1370272788,
            "stop": 1370272798
        },
        {
            "start": 1370272803,
            "stop": 1370273209
        },
        {
            "start": 1370273210,
            "stop": 1370273516
        },
        {
            "start": 1370273518,
            "stop": 1370274190
        },
        {
            "start": 1370274191,
            "stop": 1370274569
        },
        {
            "start": 1370274573,
            "stop": 1370274780
        },
        {
            "start": 1370275128,
            "stop": 1370275287
        },
        {
            "start": 1370275292,
            "stop": 1370278260
        },
        {
            "start": 1370278262,
            "stop": 1370280577
        },
        {
            "start": 1370280834,
            "stop": 1370282429
        },
        {
            "start": 1370282431,
            "stop": 1370283139
        },
        {
            "start": 1370283141,
            "stop": 1370284592
        },
        {
            "start": 1370284593,
            "stop": 1370285246
        }
    ]
}