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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=344",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 345,
    "results": [
        {
            "start": 847718352,
            "stop": 847718372
        },
        {
            "start": 847718373,
            "stop": 847718414
        },
        {
            "start": 847718416,
            "stop": 847718437
        },
        {
            "start": 847718438,
            "stop": 847718440
        },
        {
            "start": 847718441,
            "stop": 847718460
        },
        {
            "start": 847718461,
            "stop": 847718479
        },
        {
            "start": 847718480,
            "stop": 847718501
        },
        {
            "start": 847718505,
            "stop": 847718510
        },
        {
            "start": 847718511,
            "stop": 847718522
        },
        {
            "start": 847718523,
            "stop": 847718525
        },
        {
            "start": 847718526,
            "stop": 847718544
        },
        {
            "start": 847718546,
            "stop": 847718563
        },
        {
            "start": 847718565,
            "stop": 847718587
        },
        {
            "start": 847718589,
            "stop": 847718607
        },
        {
            "start": 847718608,
            "stop": 847718628
        },
        {
            "start": 847718629,
            "stop": 847718652
        },
        {
            "start": 847718653,
            "stop": 847718670
        },
        {
            "start": 847718671,
            "stop": 847718693
        },
        {
            "start": 847718695,
            "stop": 847718698
        },
        {
            "start": 847718699,
            "stop": 847718713
        }
    ]
}