> ## Documentation Index
> Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Sparse Fieldsets

> Requesting specific fields to reduce payload size

You can render a selected list of attributes via the `fields[resource_type]=attribute_name` query parameter.

Here is an example request to render a list of servers with only the hostname and label of each record.

```curl theme={null}
curl --request GET \
     --url 'https://api.latitude.sh/servers?fields[servers]=hostname,label' \
```
