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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=23",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=21",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 22,
    "results": [
        {
            "start": 1126327666,
            "stop": 1126327741
        },
        {
            "start": 1126327742,
            "stop": 1126327938
        },
        {
            "start": 1126327939,
            "stop": 1126328149
        },
        {
            "start": 1126328150,
            "stop": 1126328235
        },
        {
            "start": 1126328236,
            "stop": 1126328351
        },
        {
            "start": 1126328352,
            "stop": 1126328450
        },
        {
            "start": 1126328451,
            "stop": 1126328537
        },
        {
            "start": 1126328539,
            "stop": 1126328583
        },
        {
            "start": 1126328584,
            "stop": 1126329007
        },
        {
            "start": 1126329008,
            "stop": 1126329124
        },
        {
            "start": 1126329125,
            "stop": 1126329325
        },
        {
            "start": 1126329327,
            "stop": 1126329518
        },
        {
            "start": 1126329519,
            "stop": 1126329742
        },
        {
            "start": 1126329744,
            "stop": 1126329850
        },
        {
            "start": 1126329851,
            "stop": 1126329956
        },
        {
            "start": 1126329957,
            "stop": 1126330094
        },
        {
            "start": 1126330096,
            "stop": 1126330136
        },
        {
            "start": 1126330137,
            "stop": 1126330322
        },
        {
            "start": 1126330323,
            "stop": 1126330422
        },
        {
            "start": 1126330423,
            "stop": 1126330527
        }
    ]
}