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/L1_CBCHIGH_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/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=98",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 99,
    "results": [
        {
            "start": 816915840,
            "stop": 816915851
        },
        {
            "start": 816915954,
            "stop": 816916012
        },
        {
            "start": 816916042,
            "stop": 816916078
        },
        {
            "start": 816916113,
            "stop": 816916137
        },
        {
            "start": 816916158,
            "stop": 816916178
        },
        {
            "start": 816917142,
            "stop": 816917185
        },
        {
            "start": 816917206,
            "stop": 816917210
        },
        {
            "start": 816917234,
            "stop": 816917400
        },
        {
            "start": 816917426,
            "stop": 816917433
        },
        {
            "start": 816917467,
            "stop": 816917505
        },
        {
            "start": 816917527,
            "stop": 816917568
        },
        {
            "start": 816917603,
            "stop": 816917663
        },
        {
            "start": 816917683,
            "stop": 816917693
        },
        {
            "start": 816917724,
            "stop": 816917762
        },
        {
            "start": 816917833,
            "stop": 816917875
        },
        {
            "start": 816917910,
            "stop": 816917912
        },
        {
            "start": 816917932,
            "stop": 816918051
        },
        {
            "start": 816918054,
            "stop": 816918073
        },
        {
            "start": 816918095,
            "stop": 816918138
        },
        {
            "start": 816918159,
            "stop": 816918281
        }
    ]
}