Published by the Office of the Federal Register, National Archives and Records Administration (NARA), the Federal Register is the official daily publication for rules, proposed rules, and notices of Federal agencies and organizations, as well as executive orders and other presidential documents. About the Federal Register
.
FDsys - Browse Federal Register . (2018). Gpo.gov. Retrieved 22 March 2018, from https://www.gpo.gov/fdsys/browse/collection.action?collectionCode=FR
All URIs are relative to https://www.govinfo.gov/link
.
Method | HTTP request | Description |
---|---|---|
frDocFetchUsingGET | GET /fr/{frdocnum} | Query: Federal Register document number |
frVolumeFetchUsingGET | GET /fr/{volume}/{page} | Query: volume, page number |
Object frDocFetchUsingGET(frdocnum, opts)
Query: Federal Register document number
const { FederalRegister } = require('govinfo-link-js')
const api = new FederalRegister()
const frdocnum = 'frdocnum_example' // String | Required - The is the FR doc number that is listed at the end of each Federal Register document. Sample value is 2010-32535.
const opts = {
linkType: 'linkType_example' // String | This is the format of the returned document. Default is pdf. Other values are html, mods, premis, details, context, related.
}
const callback = (error, data, response) => {
if (error) {
console.error(error)
} else {
console.log(`SUCCESS: ${JSON.stringify(response, null, 2)}`)
}
}
api.frDocFetchUsingGET(frdocnum, opts, callback)
Name | Type | Description | Notes |
---|---|---|---|
frdocnum | String | Required - The is the FR doc number that is listed at the end of each Federal Register document. Sample value is 2010-32535. | |
linkType | String | This is the format of the returned document. Default is pdf. Other values are html, mods, premis, details, context, related. | [optional] |
Object
No authorization required.
- Content-Type:
application/json
- Accept: /
Object frVolumeFetchUsingGET(volume, page, opts)
Query: volume, page number
const { FederalRegister } = require('govinfo-link-js')
const api = new FederalRegister()
const volume = 56 // Number | This is the numerical volume number. Sample value is 76.
const page = 56 // Number | This is the numerical page number. Federal Register pages are numbered consecutively within a volume. Note: when multiple granules are contained on a page, content and metadata for the last granule on the page will be returned. Recommend selecting PDF link-type to return content for all granules on a page. Sample value is 575.
const opts = {
linkType: 'linkType_example' // String | This is the format of the returned document. Default is pdf. Other values are html, mods, premis, details, context, related.
}
const callback = (error, data, response) => {
if (error) {
console.error(error)
} else {
console.log(`SUCCESS: ${JSON.stringify(response, null, 2)}`)
}
}
api.frVolumeFetchUsingGET(volume, page, opts, callback)
Name | Type | Description | Notes |
---|---|---|---|
volume | Number | This is the numerical volume number. Sample value is 76. | |
page | Number | This is the numerical page number. Federal Register pages are numbered consecutively within a volume. Note: when multiple granules are contained on a page, content and metadata for the last granule on the page will be returned. Recommend selecting PDF link-type to return content for all granules on a page. Sample value is 575. | |
linkType | String | This is the format of the returned document. Default is pdf. Other values are html, mods, premis, details, context, related. | [optional] |
Object
No authorization required.
- Content-Type:
application/json
- Accept: /