get_smartspeed_tests_only: Get only SmartSpeed test data

View source: R/session.R

get_smartspeed_tests_onlyR Documentation

Get only SmartSpeed test data

Description

Wrapper around get_smartspeed_tests() to retrieve SmartSpeed test data. Intended for use when you want to fetch multiple SmartSpeed tests.

Usage

get_smartspeed_tests_only(start_date = NULL)

Arguments

start_date

(Optional) A UTC ISO 8601 datetime string (e.g. "2025-06-25T00:00:00Z") used to filter results by modification time. Input as a string.

Value

A data frame where each row corresponds to a SmartSpeed test summary retrieved from the API. Returned invisibly.

Examples

## Not run: 
# Fetch all recent SmartSpeed tests
tests <- get_smartspeed_tests_only()
View(tests)

# Fetch SmartSpeed tests using a one-off start date override
tests <- get_smartspeed_tests_only(start_date = "2025-07-01T00:00:00Z")
View(tests)

## End(Not run)

valdr documentation built on April 22, 2026, 9:08 a.m.