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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5003",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCHIGH_CAT3/segments?format=api&page=5001",
    "results_count": 104500,
    "results_per_page": 20,
    "num_pages": 5225,
    "page_number": 5002,
    "results": [
        {
            "start": 874478567,
            "stop": 874478677
        },
        {
            "start": 874480016,
            "stop": 874481562
        },
        {
            "start": 874481581,
            "stop": 874482343
        },
        {
            "start": 874482362,
            "stop": 874483316
        },
        {
            "start": 874483335,
            "stop": 874483422
        },
        {
            "start": 874483441,
            "stop": 874483544
        },
        {
            "start": 874483564,
            "stop": 874483878
        },
        {
            "start": 874483898,
            "stop": 874483953
        },
        {
            "start": 874483972,
            "stop": 874484023
        },
        {
            "start": 874484042,
            "stop": 874484093
        },
        {
            "start": 874484112,
            "stop": 874484361
        },
        {
            "start": 874484380,
            "stop": 874484500
        },
        {
            "start": 874484519,
            "stop": 874484646
        },
        {
            "start": 874484665,
            "stop": 874484669
        },
        {
            "start": 874484688,
            "stop": 874484749
        },
        {
            "start": 874484768,
            "stop": 874484798
        },
        {
            "start": 874484818,
            "stop": 874485012
        },
        {
            "start": 874485031,
            "stop": 874485110
        },
        {
            "start": 874485129,
            "stop": 874485371
        },
        {
            "start": 874485390,
            "stop": 874485538
        }
    ]
}