v1

latestOpenAPI 3.0.3Apache 2.02026-07-138386226.8 KB
Plot observations

Get plot observation

Retrieve a single plot observation using its ob_code.

get/plot-observations/{ob_code}

Path parameters

ob_codestring required

Query parameters

detail'geo' | 'minimal' | 'full'

Level of detail for the response:

  • geo: Returns core location fields only
  • minimal: Returns basic fields only
  • full: Returns more fields
with_nestedboolean

Whether to include nested fields in the response

create_parquetboolean

If true, return data payload in binary Parquet format

bundlestring

If 'csv', return a zip archive of CSVs. When set, the limit parameter will default to 20000 (and higher values will be ignored), the detail parameter will be set to 'full', and the with_nested parameter will be set to false.

Response

Matching plot observation(s), with fields based on parameters:

  • detail=geo: Name, identifier, and lat/lon fields only
  • detail=minimal&with_nested=false: Basic fields only
  • detail=minimal&with_nested=true: Basic fields + nested array fields
  • detail=full&with_nested=false: Extended fields, no nested array fields
  • detail=full&with_nested=true: Extended fields + nested array fields
  • bundle=csv: ZIP archive containing related CSV files
OR
OR
OR
OR

Example response

{
  "count": 115000,
  "data": [
    {
      "ob_code": "ob.1",
      "author_obs_code": "YOSE.001",
      "latitude": 42.19,
      "longitude": -104.54
    }
  ]
}
All 83 operations