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=99
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=100",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=98",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 99,
    "results": [
        {
            "start": 1371759866,
            "stop": 1371760038
        },
        {
            "start": 1371760039,
            "stop": 1371760300
        },
        {
            "start": 1371760302,
            "stop": 1371760817
        },
        {
            "start": 1371760818,
            "stop": 1371761200
        },
        {
            "start": 1371761205,
            "stop": 1371762563
        },
        {
            "start": 1371762565,
            "stop": 1371763019
        },
        {
            "start": 1371763021,
            "stop": 1371763877
        },
        {
            "start": 1371763879,
            "stop": 1371764293
        },
        {
            "start": 1371764294,
            "stop": 1371765639
        },
        {
            "start": 1371765641,
            "stop": 1371766052
        },
        {
            "start": 1371769102,
            "stop": 1371769157
        },
        {
            "start": 1371769159,
            "stop": 1371770057
        },
        {
            "start": 1371770058,
            "stop": 1371770226
        },
        {
            "start": 1371770229,
            "stop": 1371770240
        },
        {
            "start": 1371770241,
            "stop": 1371772150
        },
        {
            "start": 1371772151,
            "stop": 1371773150
        },
        {
            "start": 1371773152,
            "stop": 1371774101
        },
        {
            "start": 1371774103,
            "stop": 1371774334
        },
        {
            "start": 1371774335,
            "stop": 1371776123
        },
        {
            "start": 1371776124,
            "stop": 1371776354
        }
    ]
}