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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2320",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2321,
    "results": [
        {
            "start": 871649354,
            "stop": 871650041
        },
        {
            "start": 871650058,
            "stop": 871651130
        },
        {
            "start": 871651210,
            "stop": 871651257
        },
        {
            "start": 871651274,
            "stop": 871651490
        },
        {
            "start": 871651630,
            "stop": 871653485
        },
        {
            "start": 871653785,
            "stop": 871653879
        },
        {
            "start": 871654249,
            "stop": 871654393
        },
        {
            "start": 871654410,
            "stop": 871654440
        },
        {
            "start": 871654620,
            "stop": 871654701
        },
        {
            "start": 871654718,
            "stop": 871654740
        },
        {
            "start": 871655100,
            "stop": 871655299
        },
        {
            "start": 871655316,
            "stop": 871655349
        },
        {
            "start": 871655366,
            "stop": 871655460
        },
        {
            "start": 871655520,
            "stop": 871655640
        },
        {
            "start": 871656900,
            "stop": 871657200
        },
        {
            "start": 871657295,
            "stop": 871657560
        },
        {
            "start": 871657620,
            "stop": 871658100
        },
        {
            "start": 871658160,
            "stop": 871658272
        },
        {
            "start": 871658315,
            "stop": 871658744
        },
        {
            "start": 871658925,
            "stop": 871659832
        }
    ]
}