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

{
    "next": "https://gwosc.org/api/v2/runs/O3b/timelines/H1_BURST_CAT3/segments?format=api&page=501",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/H1_BURST_CAT3/segments?format=api&page=499",
    "results_count": 15616,
    "results_per_page": 20,
    "num_pages": 781,
    "page_number": 500,
    "results": [
        {
            "start": 1262382143,
            "stop": 1262382327
        },
        {
            "start": 1262382331,
            "stop": 1262382379
        },
        {
            "start": 1262382383,
            "stop": 1262382479
        },
        {
            "start": 1262382482,
            "stop": 1262382733
        },
        {
            "start": 1262382734,
            "stop": 1262382737
        },
        {
            "start": 1262382740,
            "stop": 1262382787
        },
        {
            "start": 1262382790,
            "stop": 1262383000
        },
        {
            "start": 1262383002,
            "stop": 1262383003
        },
        {
            "start": 1262383005,
            "stop": 1262383104
        },
        {
            "start": 1262397225,
            "stop": 1262397276
        },
        {
            "start": 1262397279,
            "stop": 1262397406
        },
        {
            "start": 1262397409,
            "stop": 1262397430
        },
        {
            "start": 1262397433,
            "stop": 1262397497
        },
        {
            "start": 1262397500,
            "stop": 1262397506
        },
        {
            "start": 1262397509,
            "stop": 1262397515
        },
        {
            "start": 1262397518,
            "stop": 1262397651
        },
        {
            "start": 1262397654,
            "stop": 1262397847
        },
        {
            "start": 1262397850,
            "stop": 1262397911
        },
        {
            "start": 1262397914,
            "stop": 1262398074
        },
        {
            "start": 1262398077,
            "stop": 1262398562
        }
    ]
}