# Read measurements **GET /networks/{network_identifier}/sensors/{sensor_identifier}/measurements** By default, returns a sensor's most recent 64 measurements sorted ascendingly by `creation_timestamp`. You can use the `creation_timestamp` and `direction` parameters to page through the collection. If `aggregate` is set to `true`, other query parameters are ignored and the request returns an aggregation of the sensor's measurements over the last 4 weeks. ## Servers - https://example.com: https://example.com () ## Authentication methods - Bearer token ## Parameters #### Path parameters - **network_identifier** (string) - **sensor_identifier** (string) #### Query parameters - **direction** (string) The direction of the page based on the cursor. If no cursor is provided, `next` returns the first page and `previous` returns the last page. - **creation_timestamp** (number) The cursor of the query. Depending on the direction, the request returns the next or previous elements. The element the cursor references is not included in the response. - **aggregate** (boolean) Whether to aggregate the measurements. If `true`, ignores other query parameters and returns the 1-hour averages over the last 4 weeks for each available attribute. ## Responses ### 200: OK #### Body Parameters: (array[object]) - **creation_timestamp** (number) - **value** (object) - **revision** (integer) Configurations are assigned monotonically increasing revision numbers. The revision is used as an identifier in the communication with the sensors and can clearly match configurations to measurements and logs. ### 400: Bad Request ### 401: Unauthorized ### 403: Forbidden ### 404: Not Found [Powered by Bump.sh](https://bump.sh)