Request bibliographic information by barcode

This request will return limited bibliographic information from HOLLIS, based on an item's barcode.

One of the items returned is the alma_id (otherwise known as the MMS ID), which you can then use to get further information by using the Request bibliographic information by record ID endpoint.

URL request syntax

The base syntax is:

http://webservices.lib.harvard.edu/rest/v3/hollis/barcode/{barcode}

With optional jsonp callback parameter:

http://webservices.lib.harvard.edu/rest/v3/hollis/barcode/{barcode}?jsonp={callback function name}

Parameters

Parameter

Value

Description

barcode

barcode number

Barcode number associated with the bibliographic record.

jsonp

Callback function name

The name of the callback function to wrap around JSON data.  Example: ?jsonp=ws_results

Sample URL

Requesting a MODS version of the bibliographic record associated with barcode 32044117214197:

http://webservices.lib.harvard.edu/rest/v3/hollis/barcode/32044117214197?jsonp=rec

Sample response

rec({"item": {
  "alma_id": 990126438530203941,
  "author": "King, Stephen,",
  "barcode": 32044117214197,
  "call_number": "PS3561.I483 F85 2010",
  "description": {},
  "in_temp_location": false,
  "library": "WID",
  "location": "WIDLC",
  "publication": {
    "place": "New York :",
    "publisher": "Scribner"
  },
  "requested": false,
  "temp_call_number": {},
  "temp_library": {},
  "temp_location": {},
  "temp_policy": {},
  "title": "Full dark, no stars /"
}})

Â