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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=110",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 111,
    "results": [
        {
            "start": 828573652,
            "stop": 828581593
        },
        {
            "start": 828581630,
            "stop": 828581631
        },
        {
            "start": 828582887,
            "stop": 828585124
        },
        {
            "start": 828585691,
            "stop": 828588525
        },
        {
            "start": 828589204,
            "stop": 828591253
        },
        {
            "start": 828591856,
            "stop": 828592620
        },
        {
            "start": 828592623,
            "stop": 828622903
        },
        {
            "start": 828623721,
            "stop": 828625683
        },
        {
            "start": 828625959,
            "stop": 828625988
        },
        {
            "start": 828706279,
            "stop": 828711133
        },
        {
            "start": 828711167,
            "stop": 828711168
        },
        {
            "start": 828711441,
            "stop": 828711786
        },
        {
            "start": 828712147,
            "stop": 828712738
        },
        {
            "start": 828714159,
            "stop": 828714440
        },
        {
            "start": 828715894,
            "stop": 828718014
        },
        {
            "start": 828719339,
            "stop": 828719473
        },
        {
            "start": 828719634,
            "stop": 828722292
        },
        {
            "start": 828747618,
            "stop": 828750141
        },
        {
            "start": 828750854,
            "stop": 828753364
        },
        {
            "start": 828754115,
            "stop": 828757123
        }
    ]
}