← Back to Software

datagovgrAPI

Wraps the data.gov.gr API for easy programmatic access to Greek open government data.

datagovgrAPI is an R package that provides a thin, idiomatic wrapper around the data.gov.gr open data API. Instead of manually constructing HTTP requests and parsing JSON responses, you call simple R functions and get back tidy data frames ready for analysis.

Installation

Install the development version from GitHub:

# install.packages("remotes")
remotes::install_github("stesiam/datagovgrAPI")

Usage

library(datagovgrAPI)

# Browse available datasets
get_datasets()

# Fetch a specific dataset by its slug
df <- get_data("efet-inspections")
head(df)

Features

  • Covers the full catalog of datasets published on data.gov.gr
  • Returns results as data.frame / tibble objects
  • Handles pagination automatically
  • No API key required for public endpoints