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

{
    "next": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT3/segments?format=api&page=3",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_BURST_CAT3/segments?format=api",
    "results_count": 3475,
    "results_per_page": 20,
    "num_pages": 174,
    "page_number": 2,
    "results": [
        {
            "start": 1396702986,
            "stop": 1396706491
        },
        {
            "start": 1396739496,
            "stop": 1396744261
        },
        {
            "start": 1396744264,
            "stop": 1396756606
        },
        {
            "start": 1396756609,
            "stop": 1396768570
        },
        {
            "start": 1396784915,
            "stop": 1396786049
        },
        {
            "start": 1396786052,
            "stop": 1396788364
        },
        {
            "start": 1396809233,
            "stop": 1396811718
        },
        {
            "start": 1396811723,
            "stop": 1396813495
        },
        {
            "start": 1396813980,
            "stop": 1396817328
        },
        {
            "start": 1396817332,
            "stop": 1396818041
        },
        {
            "start": 1396829475,
            "stop": 1396829703
        },
        {
            "start": 1396830077,
            "stop": 1396830227
        },
        {
            "start": 1396830802,
            "stop": 1396830815
        },
        {
            "start": 1396832601,
            "stop": 1396833474
        },
        {
            "start": 1396833585,
            "stop": 1396834397
        },
        {
            "start": 1396834398,
            "stop": 1396835226
        },
        {
            "start": 1396835228,
            "stop": 1396845618
        },
        {
            "start": 1396845620,
            "stop": 1396847149
        },
        {
            "start": 1396847152,
            "stop": 1396847524
        },
        {
            "start": 1396847529,
            "stop": 1396858240
        }
    ]
}