Since previous posts about linking to WorldCat Identities are getting out of date, here's a summary of the current API. There are several ways of linking to Identities:
- Directly to the pages themselves
- OpenURL
- NameFinder searches
- SRU searches
DIRECT LINKING
The first is by far the simplest. If you have an LCCN for a person (or corporation, or horse, etc.) you can link using that:
- http://worldcat.org/identities/lccn-n79-6533 George Bernard Shaw
- http://worldcat.org/identities/lccn-sh87-7920 Secretariat (Race horse)
People that do not have an LCCN can also be referenced directly:
We only do this for names without LCCN's, so you can't just stick an arbitrary name in and expect to get an Identity page back. For that matter, we only have pages for names found in WorldCat, so at least right now we do not cover all possible LCCN's. The best way to get an LCCN for a name is probably from the results of a NameFinder search (discussed below). There is a form to do these searches at http://worldcat.org/identities/.
We are attempting to make these links as permanent as possible, so when Ralph finally gets an LCCN associated with him, we will make the above link redirect to that new URI.
OpenURL LINKING
OpenURL links are what we use in WorldCat.org to link to pages about people:
Here’s the short version, with just last name and OCLC#.
Here’s an example with everything turned on.
The 'arn' in that last URI refers to the Authority Record Number, a number assigned by OCLC to each authority record. Currently we only use a few pieces of the possible fields in the OpenURL. First we look to see if there is an ARN and use that to find a record. If there is no ARN, then we use a combination of the last name and OCLC number. If those are absent or do not result in a unique record, then we assemble a full name from the component pieces and send that to the NameFinder.
NameFinder SEARCHES
The name finder service gives back a list of candidate names with URI's, ranking information, a sample title and other information about the name. The REST-ful version of this is:
http://worldcat.org/identities/find?fullName=George+Bernard+Shaw, but there is also a SOAP version. NameFinder looks at lots of possible variations in names, so almost always results in a list rather than a unique Identity record.
SRU SEARCHES
There is also full SRU searching against the component databases that make up Identities.
There are 5 SRU databases associated with Identities: CorporateIdentities, PersonalIdentities, SubjectIdentities, AbandonedIdentities, and Identities. The last database does a federated search across the other 4. They can be found at:
http://worldcat.org/identities/search/CorporateIdentities
http://worldcat.org/identities/search/PersonalIdentities
http://worldcat.org/identities/search/SubjectIdentities
http://worldcat.org/identities/search/AbandonedIdentities
http://worldcat.org/identities/search/Identities
The Explain record for each of those services lists the indexes that can be searched. The only other trick is that a sortKey of “holdingscount” can be used to order the result sets by library holdings counts.
The URI for Ralph LeVan (http://worldcat.org/identities/np-levan,+ralph+r) turns into an SRU search: http://worldcat.org/identities/search/Identities? query=local.pnkey+exact+"np-levan,+ralph+r" .
All the URI's return SRU searchRetrieveResponses (except for NameFinder which returns pages originally designed for the ePrints-UK project).
If this explanation isn't clear, or doesn't go far enough, please let me know. Since the whole thing is built on top of SRU and all the SRU is exposed, it should be possible to do lots of things with the results and pages.
Thanks to Ralph LeVan who both wrote most of the code involved and drafted the explanation of much of the above.
--Th
Update (2010 January 15): Make sure you use the links themselves rather than cutting and pasting the text in the blog entry. The text of the blog entry has been edited for readability.
--Th