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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT2/segments?format=api&page=110",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 111,
    "results": [
        {
            "start": 1264160860,
            "stop": 1264160968
        },
        {
            "start": 1264160970,
            "stop": 1264161055
        },
        {
            "start": 1264161057,
            "stop": 1264161100
        },
        {
            "start": 1264161102,
            "stop": 1264161110
        },
        {
            "start": 1264161111,
            "stop": 1264161225
        },
        {
            "start": 1264161228,
            "stop": 1264161379
        },
        {
            "start": 1264161380,
            "stop": 1264161489
        },
        {
            "start": 1264161491,
            "stop": 1264161493
        },
        {
            "start": 1264161494,
            "stop": 1264161497
        },
        {
            "start": 1264161499,
            "stop": 1264161664
        },
        {
            "start": 1264161666,
            "stop": 1264161671
        },
        {
            "start": 1264161672,
            "stop": 1264161700
        },
        {
            "start": 1264161702,
            "stop": 1264161703
        },
        {
            "start": 1264161704,
            "stop": 1264161709
        },
        {
            "start": 1264161712,
            "stop": 1264161713
        },
        {
            "start": 1264161714,
            "stop": 1264161717
        },
        {
            "start": 1264161719,
            "stop": 1264161774
        },
        {
            "start": 1264161776,
            "stop": 1264161783
        },
        {
            "start": 1264161785,
            "stop": 1264161916
        },
        {
            "start": 1264161918,
            "stop": 1264161925
        }
    ]
}