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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=122",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 123,
    "results": [
        {
            "start": 830510556,
            "stop": 830510560
        },
        {
            "start": 830510699,
            "stop": 830533635
        },
        {
            "start": 830534836,
            "stop": 830534893
        },
        {
            "start": 830536231,
            "stop": 830537656
        },
        {
            "start": 830538022,
            "stop": 830541101
        },
        {
            "start": 830542066,
            "stop": 830542513
        },
        {
            "start": 830543101,
            "stop": 830543129
        },
        {
            "start": 830543130,
            "stop": 830545210
        },
        {
            "start": 830546039,
            "stop": 830547526
        },
        {
            "start": 830548282,
            "stop": 830548436
        },
        {
            "start": 830549696,
            "stop": 830549833
        },
        {
            "start": 830549973,
            "stop": 830550133
        },
        {
            "start": 830550156,
            "stop": 830550157
        },
        {
            "start": 830551527,
            "stop": 830551542
        },
        {
            "start": 830551543,
            "stop": 830551547
        },
        {
            "start": 830574114,
            "stop": 830574493
        },
        {
            "start": 830575544,
            "stop": 830575933
        },
        {
            "start": 830576576,
            "stop": 830602690
        },
        {
            "start": 830604177,
            "stop": 830612759
        },
        {
            "start": 830614534,
            "stop": 830617320
        }
    ]
}