REST API Base URL (BASE_URL) for this CORIOLIX website
https://coriolix.sikuliaq.alaska.edu/api/
REST API Description (Swagger UI)
BASE_URL/schema/swagger-ui/
Optional URL Parameters for the last_obs Endpoint
| NAME | VALUE FORMAT | EXAMPLE | DESCRIPTION |
|---|---|---|---|
| parameter_id | UUID | parameter_id=45a29fdb-d74a-476b-a5f0-52bbf1631254 | returns the latest values from this specific parameter only |
| sensor_id | text | sensor_id=pyrano190096 | returns the latest parameter values collected by this sensor |
| detailed_name | text | detailed_name=latitude_degrees | returns the latest values from all parameters with this name |
| is_primary | 1 or true | is_primary=1 | returns the latest values from all primary parameters |
| format | 'json' or 'csv' | format=csv | the desired output data format (default is json) |
Optional URL Parameters for Full Resolution Data Retrieval
| NAME | VALUE FORMAT | EXAMPLE | DESCRIPTION |
|---|---|---|---|
| date_after | datetime (UTC) | date_after=2025-10-30%2004:00:00 | returns only the data from after this date |
| date_before | datetime (UTC) | date_before=2025-10-31%2004:00:00 | returns only the data from before this date |
| decfactr | integer greater than 1 | decfactr=10 | returns every X rows only (decimates the data) |
| last_item | any (e.g. 1 or true) | last_item=1 | returns the last (most recent) values from the date range |
| format | 'json' or 'csv' | format=csv | the desired output data format (default is csv) |
Optional URL Parameters for Binned Data Retrieval
| NAME | VALUE FORMAT | EXAMPLE | DESCRIPTION |
|---|---|---|---|
| bin_interval | '60' or '600' | bin_interval=60 | returns 60-second or 600-second bins (default is 60) |
| date_after | datetime (UTC) | date_after=2025-10-30%2004:00:00 | returns only the data from after this date |
| date_before | datetime (UTC) | date_before=2025-10-31%2004:00:00 | returns only the data from before this date |
| decfactr | integer greater than 1 | decfactr=10 | returns every X rows only (decimates the data) |
| last_item | any (e.g. 1 or true) | last_item=1 | returns the last (most recent) values from the date range |
| format | 'json' or 'csv' | format=csv | the desired output data format (default is csv) |
| geo | true | geo=true | if true, outputs the data with a geo point field (available in JSON format only) |
| fields | comma-separated list | fields=latitude_degrees_seapth000000,longitude_degrees_seapth000000 | exact match to binned field names (case insensitive) |
| sensors | comma-separated list | sensors=seapth000000,anemom005805 | exact match to sensor IDs (case insensitive) |
| sensors_like | comma-separated list | sensors_like=seapth,anemo | matches part of the sensor ID, model, name, or type (case insensitive) |
| parameters | comma-separated list | parameters=latitude,sog | exact match to the parameter short name (case insensitive) |
| parameters_like | comma-separated list | parameters_like=course,speed | matches part of the parameter short name or long name (case insensitive) |
| classes | comma-separated list | classes=navigation,flowthrough | exact match to sensor classes (case insensitive) |
| is_primary | any (e.g. 1 or true) | is_primary=true | if set, outputs only primary parameters |
Optional URL Parameters for Bin Statistics Retrieval
| NAME | VALUE FORMAT | EXAMPLE | DESCRIPTION |
|---|---|---|---|
| bin_interval | '60' or '600' | bin_interval=60 | returns 60-second or 600-second bins (default is 60) |
| date_after | datetime (UTC) | date_after=2025-10-30%2004:00:00 | returns only the data from after this date |
| date_before | datetime (UTC) | date_before=2025-10-31%2004:00:00 | returns only the data from before this date |
| decfactr | integer greater than 1 | decfactr=10 | returns every X rows only (decimates the data) |
| last_item | any (e.g. 1 or true) | last_item=1 | returns the last (most recent) values from the given date range |
| format | 'json' or 'csv' | format=csv | the desired output data format (default is csv) |