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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=254",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 255,
    "results": [
        {
            "start": 848307543,
            "stop": 848307667
        },
        {
            "start": 848307671,
            "stop": 848307773
        },
        {
            "start": 848307782,
            "stop": 848307797
        },
        {
            "start": 848307805,
            "stop": 848307849
        },
        {
            "start": 848307854,
            "stop": 848307980
        },
        {
            "start": 848307983,
            "stop": 848308024
        },
        {
            "start": 848308027,
            "stop": 848308047
        },
        {
            "start": 848308051,
            "stop": 848308359
        },
        {
            "start": 848308364,
            "stop": 848308514
        },
        {
            "start": 848308518,
            "stop": 848308523
        },
        {
            "start": 848308527,
            "stop": 848308567
        },
        {
            "start": 848308580,
            "stop": 848308587
        },
        {
            "start": 848308595,
            "stop": 848308606
        },
        {
            "start": 848308614,
            "stop": 848308620
        },
        {
            "start": 848308644,
            "stop": 848308654
        },
        {
            "start": 848308678,
            "stop": 848308688
        },
        {
            "start": 848308692,
            "stop": 848308698
        },
        {
            "start": 848308702,
            "stop": 848308718
        },
        {
            "start": 848308727,
            "stop": 848308733
        },
        {
            "start": 848308746,
            "stop": 848308756
        }
    ]
}