Skip to contents

Utilize the simple endpoints /info and /table_rate_limit. Those provide information about available locales and the amount of requests available for calls against the /table endpoint.

Usage

sc_info(language = c("en", "de"), key = NULL, server = "ext")

sc_rate_limit_table(language = c("en", "de"), key = NULL, server = "ext")

sc_rate_limit_schema(language = c("en", "de"), key = NULL, server = "ext")

sc_rate_limits(x)

Arguments

language

The language to be used for labeling. "en" or "de"

key

(string) An API key. To display your key, call sc_browse_preferences().

server

A STATcube API server. Defaults to the external Server via "ext". Other options are "red" for the editing server and "prod" for the production server. External users should always use the default option "ext".

x

either a response-object (package httr), an object of class sc_table or an object of class sc_schema

Functions

  • sc_info(): returns information about all available database languages

  • sc_rate_limit_table(): returns a 3x1 dataframe with the following columns

    • remaining how much requests can be sent to the /table endpoint until the rate limit is reached.

    • limit the number of requests allowed per hour.

    • reset a tiestamp when the rate limit will be reset. Ususally, this should be less than one hour `after the current time.

  • sc_rate_limits(): gets rate limits from response headers

Examples

sc_info()
#>   locale displayName
#> 1     de     Deutsch
#> 2     en     English
sc_rate_limit_table()
#> 66 / 100 (Resets at [10:51:32])
#> 
sc_rate_limit_schema()
#> 9995 / 10000 (Resets at [10:51:32])
#> 
sc_schema("str:group:deake005:X_B1") %>%
  sc_rate_limits()
#> $schema
#> 9995 / 10000 (Resets at [10:51:32])
#> 
#> 
#> $table
#> 66 / 100 (Resets at [10:51:32])
#> 
#>