Browse data sets to see what data is available.

Query Index:

Data Summary as JSON - Version 1

Method: GET
URI
/v1/dataSummary/[domain]?[station=(station)][&name=(name)][&method=(method)]
Accept
application/json

Query Parameters

Optional:
domain
Specify a domain to summarise, for example dart
station
Specify a station, for example NZA, to only summarise data available for that particular station.
name
Specify a series name, for example water-height, to only summarise data for series with that name.
method
Specify a series method, for example 15m, to only summarise data for series of that method.

Response Properties

Response has the JSON struct of:


// No parameters given (Level 0):
{
  "domains": {
    "dart": {
      "domain_name": "dart",
      "description": "Deep-ocean Assessment and Reporting of Tsunami",
      "recordCount": 176177,
      "seriesCount": 19,
      "stationCount": 12,
      "earliestRecord": "2020-01-01T00:00:00Z",
      "latestRecord": "2021-08-18T00:00:00Z"
    }
  }
}

// Only domain parameter given (Level 1):
{
  "domain": {
    "dart": {
      "domain_name": "dart",
      "description": "Deep-ocean Assessment and Reporting of Tsunami",
      "names": {
        "water-height": {
          "measure_name": "water-height",
          "methods": {
            "15s": {
              "method_name": "15s",
              "aspects": {
                "nil": {
                  "aspect": "nil",
                  "recordCount": 49216,
                  "stationCount": 7,
                  "earliestRecord": "2021-01-08T00:01:15Z",
                  "latestRecord": "2021-08-17T23:59:45Z"
                }
              }
            },
            "15m": {
              "method_name": "15m",
              "aspects": {
                "nil": {
                  "aspect": "nil",
                  "recordCount": 126961,
                  "stationCount": 12,
                  "earliestRecord": "2020-01-01T00:00:00Z",
                  "latestRecord": "2021-08-18T00:00:00Z"
                }
              }
            }
          }
        }
      },
      "stations": {
        "NZA": {
          "station_name": "NZA",
          "latitude": -42.371,
          "longitude": 176.914,
          "elevation_m": 0,
          "sensor_codes": {
            "40": {
              "sensor_code": "40",
              "metadata": {
                "lat": -42.3707,
                "lon": 176.9109
              },
              "names": {
                "water-height": {
                  "measure_name": "water-height",
                  "methods": {
                    "15s": {
                      "method_name": "15s",
                      "aspects": {
                        "nil": {
                          "aspect": "nil",
                          "recordCount": 13007,
                          "earliestRecord": "2021-01-08T00:01:30Z",
                          "latestRecord": "2021-08-17T23:59:45Z"
                        }
                      }
                    },
                    "15m": {
                      "method_name": "15m",
                      "aspects": {
                        "nil": {
                          "aspect": "nil",
                          "recordCount": 18572,
                          "earliestRecord": "2020-12-31T18:15:00Z",
                          "latestRecord": "2021-08-17T23:45:00Z"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
        (...all other stations in domain)
      }
    }
  }
}

// Domain parameter given, and one or more of station,name, and method parameters given (Level 2).
// eg: dart?name=water-height&method=15m
{
  "domain": {
    "dart": {
      "domain_name": "dart",
      "description": "Deep-ocean Assessment and Reporting of Tsunami",
      "stations": {
        "NZA": {
          "station_name": "NZA",
          "latitude": -42.371,
          "longitude": 176.914,
          "elevation_m": 0,
          "sensor_codes": {
            "40": {
              "sensor_code": "40",
              "metadata": {
                "lat": -42.3707,
                "lon": 176.9109
              },
              "names": {
                "water-height": {
                  "measure_name": "water-height",
                  "methods": {
                    "15m": {
                      "method_name": "15m",
                      "aspects": {
                        "nil": {
                          "aspect": "nil",
                          "recordCount": 18572,
                          "earliestRecord": "2020-12-31T18:15:00Z",
                          "latestRecord": "2021-08-17T23:45:00Z"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "NZB": {
          "station_name": "NZB",
          "latitude": -40.599,
          "longitude": 179.096,
          "elevation_m": 0,
          "sensor_codes": {
            "40": {
              "sensor_code": "40",
              "metadata": {
                "lat": -40.6003,
                "lon": 179.0996
              },
              "names": {
                "water-height": {
                  "measure_name": "water-height",
                  "methods": {
                    "15m": {
                      "method_name": "15m",
                      "aspects": {
                        "nil": {
                          "aspect": "nil",
                          "recordCount": 18612,
                          "earliestRecord": "2020-12-31T18:15:00Z",
                          "latestRecord": "2021-08-18T00:00:00Z"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
        (...all other stations with requested parameters)
      }
    }
  }
}

    
Level 0:

Domain Object
Keyed by domain.
domain_name
The name of the domain.
description
A short description of the domain.
recordCount
The estimated total number of observations recorded for the domain.
seriesCount
The number of series available for the domain.
stationCount
The number of stations that have recorded data in the domain.
earliestRecord
The timestamp of the first observation recorded in the domain.
latestRecord
The timestamp of the most recent observation recorded in the domain.

Level 1:

Name Object
Keyed by measure name.
measure_name
The name of the measurement.
methods
Summarises each method available for that name.

Name:Method Object
Keyed by method name.
method_name
The name of the method.
recordCount
The estimated number of observations recorded for that name and method in the domain.
stationCount
The number of stations that have recorded data for that name and method in the domain.
earliestRecord
The timestamp of the first observation recorded for that name and method in the domain.
latestRecord
The timestamp of the most recent observation recorded for that name and method in the domain.

Station Object
Keyed by station name.
station_name
The name of the station.
latitude
The latitude of the station.
longitude
The longitude of the station.
elevation_m
Height in metres of the Station above the free surface for the given Reference Datum.
sensor_codes
Summarises each sensor available for that station.

Station:SensorCode Object
Keyed by sensor code.
sensor_code
The sensor code.
metadata
Metadata for the sensor at that station.
For now this contains location information:
lat: The latitude of the sensor at that station.
lon: The longitude of the sensor at that station.
names
Summaries each measurement for that sensor and station.

Station:SensorCode:Name Object
Keyed by measure name.
measure_name
The name of the measurement.
methods
Summarises each method available for that name,sensor, and station.

Station:SensorCode:Name:Method Object
Keyed by method name.
method_name
The name of the method.
recordCount
The estimated number of observations recorded at that station by that sensor, for that name and method in the domain.
earliestRecord
The timestamp of the first observation recorded at that station by that sensor, for that name and method in the domain.
latestRecord
The timestamp of the most recent observation recorded at that station by that sensor, for that name and method in the domain.

Level 2:

Station Object
Keyed by station name. Same as Level 1 station object but filtered based on parameters.

Example Query and Response

Query to summarise all domains (Level 0)
/v1/dataSummary/
          {
            "domains": {
              "dart": {
                "domain_name": "dart",
                "description": "Deep-ocean Assessment and Reporting of Tsunami",
                "recordCount": 176177,
                "seriesCount": 19,
                "stationCount": 12,
                "earliestRecord": "2020-01-01T00:00:00Z",
                "latestRecord": "2021-08-18T00:00:00Z"
              }
            }
          }
        
Query to summarise a specific domain (Level 1)
/v1/dataSummary/dart
      {
        "domain":{
          "dart":{
            "domain_name":"dart",
            "description":"Deep-ocean Assessment and Reporting of Tsunami",
            "names":{
              "water-height":{
                "measure_name":"water-height",
                "methods":{
                  "15m":{
                    "method_name":"15m",
                    "aspects":{
                      "nil":{
                        "aspect":"nil",
                        "recordCount":346119,
                        "stationCount":12,
                        "earliestRecord":"2019-12-13T02:15:00Z",
                        "latestRecord":"2022-01-26T00:00:00Z"
                      }
                    }
                  },
                  "15s":{
                    "method_name":"15s",
                    "aspects":{
                      "nil":{
                        "aspect":"nil",
                        "recordCount":129786,
                        "stationCount":12,
                        "earliestRecord":"2020-03-14T10:05:00Z",
                        "latestRecord":"2022-01-23T19:59:45Z"
                      }
                    }
                  }
                }
              }
            },
            "stations":{
              "NZA":{
                "station_name":"NZA",
                "latitude":-42.371,
                "longitude":176.911,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-42.3707,
                      "lon":176.9109
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":53007,
                                "earliestRecord":"2019-12-21T22:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":15028,
                                "earliestRecord":"2020-05-08T04:43:00Z",
                                "latestRecord":"2021-12-20T05:24:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-42.3717,
                      "lon":176.9093
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1435,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":4560,
                                "earliestRecord":"2022-01-15T00:00:00Z",
                                "latestRecord":"2022-01-15T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZB":{
                "station_name":"NZB",
                "latitude":-40.599,
                "longitude":179.096,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-40.6003,
                      "lon":179.0996
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":37287,
                                "earliestRecord":"2020-09-18T23:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":13818,
                                "earliestRecord":"2020-10-28T22:19:15Z",
                                "latestRecord":"2022-01-15T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZC":{
                "station_name":"NZC",
                "latitude":-38.2,
                "longitude":-179.797,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-38.2001,
                      "lon":-179.7978
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":53952,
                                "earliestRecord":"2019-12-13T02:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":5071,
                                "earliestRecord":"2020-05-29T01:00:00Z",
                                "latestRecord":"2022-01-10T02:48:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-38.2004,
                      "lon":-179.7978
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1439,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":4320,
                                "earliestRecord":"2022-01-15T06:00:00Z",
                                "latestRecord":"2022-01-15T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZD":{
                "station_name":"NZD",
                "latitude":-36.0998,
                "longitude":178.6037,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-36.0998,
                      "lon":178.6037
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16315,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":7528,
                                "earliestRecord":"2021-08-10T00:03:30Z",
                                "latestRecord":"2022-01-15T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZE":{
                "station_name":"NZE",
                "latitude":-36.049,
                "longitude":-177.708,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-36.0493,
                      "lon":-177.708
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":47539,
                                "earliestRecord":"2019-12-19T00:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":12116,
                                "earliestRecord":"2020-06-10T01:25:15Z",
                                "latestRecord":"2022-01-10T03:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-36.0499,
                      "lon":-177.697
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1435,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":4800,
                                "earliestRecord":"2022-01-15T00:00:00Z",
                                "latestRecord":"2022-01-15T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZF":{
                "station_name":"NZF",
                "latitude":-29.682,
                "longitude":-175.009,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-29.6843,
                      "lon":-175.0126
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":6948,
                                "earliestRecord":"2019-12-16T19:15:00Z",
                                "latestRecord":"2020-03-23T18:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":355,
                                "earliestRecord":"2020-03-14T10:05:00Z",
                                "latestRecord":"2020-03-24T14:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-29.6823,
                      "lon":-175.0124
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":19627,
                                "earliestRecord":"2020-08-31T21:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":15392,
                                "earliestRecord":"2021-07-23T00:00:00Z",
                                "latestRecord":"2022-01-16T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZG":{
                "station_name":"NZG",
                "latitude":-23.344,
                "longitude":-173.409,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-23.3516,
                      "lon":-173.4012
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":37641,
                                "earliestRecord":"2020-09-11T02:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16831,
                                "earliestRecord":"2020-10-29T00:08:45Z",
                                "latestRecord":"2022-01-16T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZH":{
                "station_name":"NZH",
                "latitude":-20.087,
                "longitude":-171.854,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-20.0896,
                      "lon":-171.8599
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":6316,
                                "earliestRecord":"2020-09-04T03:15:00Z",
                                "latestRecord":"2020-12-15T14:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":502,
                                "earliestRecord":"2020-10-01T01:18:15Z",
                                "latestRecord":"2020-10-29T02:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZI":{
                "station_name":"NZI",
                "latitude":-16.89,
                "longitude":-171.198,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-16.8921,
                      "lon":-171.1904
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":14324,
                                "earliestRecord":"2020-09-08T02:15:00Z",
                                "latestRecord":"2021-05-07T04:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1544,
                                "earliestRecord":"2020-10-30T01:51:30Z",
                                "latestRecord":"2021-03-04T23:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZJ":{
                "station_name":"NZJ",
                "latitude":-26.6672,
                "longitude":163.9549,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-26.6672,
                      "lon":163.9549
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16310,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":9587,
                                "earliestRecord":"2021-08-10T03:00:00Z",
                                "latestRecord":"2022-01-23T19:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZK":{
                "station_name":"NZK",
                "latitude":-24.3093,
                "longitude":169.4988,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-24.3093,
                      "lon":169.4988
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16222,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":10749,
                                "earliestRecord":"2021-08-09T22:00:00Z",
                                "latestRecord":"2022-01-23T19:59:45Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZL":{
                "station_name":"NZL",
                "latitude":-19.3096,
                "longitude":166.782,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-19.3096,
                      "lon":166.782
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16322,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          },
                          "15s":{
                            "method_name":"15s",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":7585,
                                "earliestRecord":"2021-08-09T22:00:00Z",
                                "latestRecord":"2022-01-23T18:35:15Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    
Query to summarise a specific domain, station, name, and method (Level 2)
/v1/dataSummary/dart?station=NZB&name=water-height&method=15s
      {
        "domain": {
          "dart": {
            "domain_name": "dart",
            "description": "Deep-ocean Assessment and Reporting of Tsunami",
            "stations": {
              "NZB": {
                "station_name": "NZB",
                "latitude": -40.599,
                "longitude": 179.096,
                "elevation_m": 0,
                "sensor_codes": {
                  "40": {
                    "sensor_code": "40",
                    "metadata": {
                      "lat": -40.6003,
                      "lon": 179.0996
                    },
                    "names": {
                      "water-height": {
                        "measure_name": "water-height",
                        "methods": {
                          "15s": {
                            "method_name": "15s",
                            "aspects": {
                              "nil": {
                                "aspect": "nil",
                                "recordCount": 9891,
                                "earliestRecord": "2021-01-08T22:01:00Z",
                                "latestRecord": "2021-08-17T23:48:15Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    
Query to summarise a specific domain and method (Level 2)
/v1/dataSummary/dart?method=15m
      {
        "domain":{
          "dart":{
            "domain_name":"dart",
            "description":"Deep-ocean Assessment and Reporting of Tsunami",
            "stations":{
              "NZA":{
                "station_name":"NZA",
                "latitude":-42.371,
                "longitude":176.911,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-42.3707,
                      "lon":176.9109
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":53007,
                                "earliestRecord":"2019-12-21T22:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-42.3717,
                      "lon":176.9093
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1435,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZB":{
                "station_name":"NZB",
                "latitude":-40.599,
                "longitude":179.096,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-40.6003,
                      "lon":179.0996
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":37287,
                                "earliestRecord":"2020-09-18T23:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZC":{
                "station_name":"NZC",
                "latitude":-38.2,
                "longitude":-179.797,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-38.2001,
                      "lon":-179.7978
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":53952,
                                "earliestRecord":"2019-12-13T02:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-38.2004,
                      "lon":-179.7978
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1439,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZD":{
                "station_name":"NZD",
                "latitude":-36.0998,
                "longitude":178.6037,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-36.0998,
                      "lon":178.6037
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16315,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZE":{
                "station_name":"NZE",
                "latitude":-36.049,
                "longitude":-177.708,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-36.0493,
                      "lon":-177.708
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":47539,
                                "earliestRecord":"2019-12-19T00:15:00Z",
                                "latestRecord":"2022-01-11T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-36.0499,
                      "lon":-177.697
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":1435,
                                "earliestRecord":"2022-01-11T00:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZF":{
                "station_name":"NZF",
                "latitude":-29.682,
                "longitude":-175.009,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-29.6843,
                      "lon":-175.0126
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":6948,
                                "earliestRecord":"2019-12-16T19:15:00Z",
                                "latestRecord":"2020-03-23T18:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  "41":{
                    "sensor_code":"41",
                    "metadata":{
                      "lat":-29.6823,
                      "lon":-175.0124
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":19627,
                                "earliestRecord":"2020-08-31T21:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZG":{
                "station_name":"NZG",
                "latitude":-23.344,
                "longitude":-173.409,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-23.3516,
                      "lon":-173.4012
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":37641,
                                "earliestRecord":"2020-09-11T02:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZH":{
                "station_name":"NZH",
                "latitude":-20.087,
                "longitude":-171.854,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-20.0896,
                      "lon":-171.8599
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":6316,
                                "earliestRecord":"2020-09-04T03:15:00Z",
                                "latestRecord":"2020-12-15T14:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZI":{
                "station_name":"NZI",
                "latitude":-16.89,
                "longitude":-171.198,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-16.8921,
                      "lon":-171.1904
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":14324,
                                "earliestRecord":"2020-09-08T02:15:00Z",
                                "latestRecord":"2021-05-07T04:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZJ":{
                "station_name":"NZJ",
                "latitude":-26.6672,
                "longitude":163.9549,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-26.6672,
                      "lon":163.9549
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16310,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZK":{
                "station_name":"NZK",
                "latitude":-24.3093,
                "longitude":169.4988,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-24.3093,
                      "lon":169.4988
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16222,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "NZL":{
                "station_name":"NZL",
                "latitude":-19.3096,
                "longitude":166.782,
                "elevation_m": 0,
                "sensor_codes":{
                  "40":{
                    "sensor_code":"40",
                    "metadata":{
                      "lat":-19.3096,
                      "lon":166.782
                    },
                    "names":{
                      "water-height":{
                        "measure_name":"water-height",
                        "methods":{
                          "15m":{
                            "method_name":"15m",
                            "aspects":{
                              "nil":{
                                "aspect":"nil",
                                "recordCount":16322,
                                "earliestRecord":"2021-08-08T18:15:00Z",
                                "latestRecord":"2022-01-26T00:00:00Z"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }