Skip to main content
All GET endpoints that return resource collections support inclusion via URL parameter. This allows you to fetch related parent and child resources in a single request.
fields
string
default:"null"
A comma-separated list of property paths.
Inclusion nesting depth is restricted for better performance.
# Returns all datasets along with their states, properties (including options), and representations.
curl --request GET \
  --url '/datasets?fields=states,properties.options,representations'
# Returns all records along with their states, datums with properties, and nested records (including their own states and datums with properties).
curl --request GET \
  --url '/records?fields=state,datums.property,datums.recordvalue.state,datums.recordvalue.datums.property'