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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=249",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 250,
    "results": [
        {
            "start": 1177874489,
            "stop": 1177879830
        },
        {
            "start": 1177879832,
            "stop": 1177881165
        },
        {
            "start": 1177881166,
            "stop": 1177882232
        },
        {
            "start": 1177882236,
            "stop": 1177882253
        },
        {
            "start": 1177882254,
            "stop": 1177886105
        },
        {
            "start": 1177886748,
            "stop": 1177889182
        },
        {
            "start": 1177889184,
            "stop": 1177891454
        },
        {
            "start": 1177891569,
            "stop": 1177892421
        },
        {
            "start": 1177894437,
            "stop": 1177898745
        },
        {
            "start": 1177898747,
            "stop": 1177918681
        },
        {
            "start": 1177918683,
            "stop": 1177918909
        },
        {
            "start": 1177919477,
            "stop": 1177928993
        },
        {
            "start": 1177928994,
            "stop": 1177929094
        },
        {
            "start": 1177929095,
            "stop": 1177929096
        },
        {
            "start": 1177929098,
            "stop": 1177929416
        },
        {
            "start": 1177929418,
            "stop": 1177929421
        },
        {
            "start": 1177929422,
            "stop": 1177929531
        },
        {
            "start": 1177929532,
            "stop": 1177929542
        },
        {
            "start": 1177929543,
            "stop": 1177929878
        },
        {
            "start": 1177929880,
            "stop": 1177930757
        }
    ]
}