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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=43",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=41",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 42,
    "results": [
        {
            "start": 1370050485,
            "stop": 1370051650
        },
        {
            "start": 1370051651,
            "stop": 1370052239
        },
        {
            "start": 1370052240,
            "stop": 1370053358
        },
        {
            "start": 1370053360,
            "stop": 1370054993
        },
        {
            "start": 1370054994,
            "stop": 1370056431
        },
        {
            "start": 1370056433,
            "stop": 1370057962
        },
        {
            "start": 1370057964,
            "stop": 1370059329
        },
        {
            "start": 1370059331,
            "stop": 1370060484
        },
        {
            "start": 1370060486,
            "stop": 1370061701
        },
        {
            "start": 1370061703,
            "stop": 1370061852
        },
        {
            "start": 1370061853,
            "stop": 1370063118
        },
        {
            "start": 1370063120,
            "stop": 1370064829
        },
        {
            "start": 1370064831,
            "stop": 1370066108
        },
        {
            "start": 1370066110,
            "stop": 1370066942
        },
        {
            "start": 1370066945,
            "stop": 1370067913
        },
        {
            "start": 1370067915,
            "stop": 1370069244
        },
        {
            "start": 1370069246,
            "stop": 1370070831
        },
        {
            "start": 1370070832,
            "stop": 1370072154
        },
        {
            "start": 1370072155,
            "stop": 1370073373
        },
        {
            "start": 1370073375,
            "stop": 1370074971
        }
    ]
}