# List Data Points **GET /data_points** Returns a paginated collection of data points for a metric. Data points store the actual value of a metric for each time period. ## Servers - Production server: https://api.visible.vc (Production server) ## Authentication methods - Bearer auth ## Parameters ### Query parameters - **metric_id** (string(uuid) | array[string(uuid)]) ID of a metric or an array of metric IDs - **page** (integer) Page number - **page_size** (integer) Number of data points per page (between 1 and 100) - **start_date** (string(date)) Beginning of date range (ISO 8601 date) - **end_date** (string(date)) End of date range (ISO 8601 date) - **exclude_blank** (string) When set to 'true', excludes data points without a value ## Responses ### 200 Successfully retrieved data points #### Body: application/json (object) - **data_points** (array[object]) - **meta** (object) ### 400 Bad Request - The request is invalid or malformed #### Body: application/json (object) - **errors** (array[object]) ### 401 Unauthorized - Invalid or missing authentication token #### Body: application/json (object) - **errors** (array[object]) ### 429 Too Many Requests - Rate limit exceeded #### Body: application/json (object) - **errors** (array[object]) [Powered by Bump.sh](https://bump.sh)