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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=249",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 250,
    "results": [
        {
            "start": 847823769,
            "stop": 847834729
        },
        {
            "start": 847836100,
            "stop": 847836313
        },
        {
            "start": 847836373,
            "stop": 847839567
        },
        {
            "start": 847839652,
            "stop": 847840858
        },
        {
            "start": 847840975,
            "stop": 847861573
        },
        {
            "start": 847861693,
            "stop": 847883711
        },
        {
            "start": 847904371,
            "stop": 847906185
        },
        {
            "start": 847906911,
            "stop": 847907690
        },
        {
            "start": 847907773,
            "stop": 847907832
        },
        {
            "start": 847907918,
            "stop": 847911270
        },
        {
            "start": 847911295,
            "stop": 847915333
        },
        {
            "start": 847916305,
            "stop": 847922233
        },
        {
            "start": 847923176,
            "stop": 847945260
        },
        {
            "start": 847948952,
            "stop": 847955113
        },
        {
            "start": 847957964,
            "stop": 847998459
        },
        {
            "start": 847998486,
            "stop": 847999201
        },
        {
            "start": 847999231,
            "stop": 848007207
        },
        {
            "start": 848007211,
            "stop": 848011273
        },
        {
            "start": 848011277,
            "stop": 848014670
        },
        {
            "start": 848015190,
            "stop": 848069439
        }
    ]
}