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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=149",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 150,
    "results": [
        {
            "start": 828530968,
            "stop": 828530970
        },
        {
            "start": 828530978,
            "stop": 828531006
        },
        {
            "start": 828531009,
            "stop": 828531011
        },
        {
            "start": 828531014,
            "stop": 828531021
        },
        {
            "start": 828531023,
            "stop": 828531024
        },
        {
            "start": 828531026,
            "stop": 828531027
        },
        {
            "start": 828531029,
            "stop": 828531046
        },
        {
            "start": 828531744,
            "stop": 828532517
        },
        {
            "start": 828532519,
            "stop": 828532714
        },
        {
            "start": 828532717,
            "stop": 828532743
        },
        {
            "start": 828532746,
            "stop": 828532912
        },
        {
            "start": 828532914,
            "stop": 828533057
        },
        {
            "start": 828533059,
            "stop": 828533230
        },
        {
            "start": 828533232,
            "stop": 828533327
        },
        {
            "start": 828533328,
            "stop": 828533329
        },
        {
            "start": 828533332,
            "stop": 828533498
        },
        {
            "start": 828533501,
            "stop": 828533521
        },
        {
            "start": 828533523,
            "stop": 828533670
        },
        {
            "start": 828533671,
            "stop": 828533699
        },
        {
            "start": 828533702,
            "stop": 828533705
        }
    ]
}