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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=455",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 456,
    "results": [
        {
            "start": 821777831,
            "stop": 821777834
        },
        {
            "start": 821777839,
            "stop": 821777844
        },
        {
            "start": 821777852,
            "stop": 821777858
        },
        {
            "start": 821777864,
            "stop": 821777867
        },
        {
            "start": 821777871,
            "stop": 821777872
        },
        {
            "start": 821777879,
            "stop": 821777894
        },
        {
            "start": 821777905,
            "stop": 821777912
        },
        {
            "start": 821777915,
            "stop": 821777921
        },
        {
            "start": 821777924,
            "stop": 821777930
        },
        {
            "start": 821777934,
            "stop": 821777935
        },
        {
            "start": 821777938,
            "stop": 821777939
        },
        {
            "start": 821777948,
            "stop": 821777955
        },
        {
            "start": 821777961,
            "stop": 821777965
        },
        {
            "start": 821777971,
            "stop": 821777973
        },
        {
            "start": 821777980,
            "stop": 821777987
        },
        {
            "start": 821777993,
            "stop": 821777994
        },
        {
            "start": 821777997,
            "stop": 821777998
        },
        {
            "start": 821778010,
            "stop": 821778012
        },
        {
            "start": 821778020,
            "stop": 821778022
        },
        {
            "start": 821778028,
            "stop": 821778029
        }
    ]
}