Overview of Finna Collection

Introduction

This section helps us to have a general overview of the general collection in Finna. For this purpose we use a separate function fetch_finna. This document demonstrates the use of the fetch_finna function to retrieve data from the Finna API with various queries and parameters.

Example 1: Fetching EAD Records

EAD records refer to archival descriptions encoded using the Encoded Archival Description (EAD) standard, an XML-based framework designed to describe archival materials, collections, and finding aids in a structured, machine-readable format.

Purpose of EAD Records

EAD records provide detailed information about archival collections, enabling better organization, discovery, and access to historical and cultural resources stored in archives, libraries, and museums.

What EAD Records Contain

An EAD record typically includes metadata such as:

library(finna)
result <- fetch_finna(
  query = "record_format:ead",
  limit = 0,
  facets = "building",
  lng = "fi",
  prettyPrint = TRUE
)
print(result)

Example 2: Fetching EAD3 Records

library(finna)
result <- fetch_finna(
  query = "record_format:ead3",
  limit = 0,
  facets = "building",
  lng = "fi",
  prettyPrint = TRUE
)
print(result)

More Metadata Formats in Finna can be found in the link here.

Conclusion

This document provides examples of how to use the fetch_finna function for retrieving various types of records from the Finna API. The tibbles contain structured data for further analysis.



Try the finna package in your browser

Any scripts or data that you put into this service are public.

finna documentation built on April 4, 2025, 2:33 a.m.