As of today (February 2012), the API key is not even longer mentioned in the dev guide:
http://code.google.com/apis/libraries/devguide.html
And also:
The preferred method is to load the libraries via standard
tags (as in ,
which will result in the fastest loads.
That means that it's not even necessary to load google jsapi, but you can simply:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
However, with google.load you can:
always load the latest stable version of the API, request the version
number without specifying a revision. So, using the above example,
requesting version 2 loads the latest stable revision of the API,
e.g., 2.2.3.
Although I'd argue, that is a dangerous feature, since an upgrade of any library has to be tested before going live.
If you choose to load libraries with google.load, you also need to set google.setOnLoadCallback.
Example:
google.setOnLoadCallback(function() {
google.load("jquery", "1.7");
});
To sum up: in both cases an API key is not needed any more, the script tag to load a library directly is faster, simpler and also recommended by Google.