By using one url in the client, you can do cool things like they did with the twitter API on Wordpress. One url also makes it easier to change the API.
You can have a page like this that allows the client to get the url it wants:
<ul>
<li><a href="/questions" class="questions">All Questions</a></li>
<li><a href="/users" class="users">All Users</a></li>
<li><a href="/badges" class="badges">All Badges</a></li>
</ul>
This could of course even be integrated into the homepage itself. All the urls will be added on some page. The client can use hypertext to find the urls for their requests.
It also very possible this way to use the Content-Type and Accept HTTP headers to get a list of questions in a machine-readable format.
UPDATE
My request is based on the "Hypermedia as the engine of application state" idea. To find all the resources in the 'api' your client needs to understand HTML (or some other format that uses urls). You give one url to your client and it will find all the others resources/urls by getting HTML from this url. For example http://stackoverflow.com/ returns something like:
<ul>
<li><a href="/questions" class="questions">All Questions</a></li>
<li><a href="/users" class="users">All Users</a></li>
<li><a href="/badges" class="badges">All Badges</a></li>
</ul>
Now your client knows abouts questions, users, and badges. It can now get /questions, which in turns returns:
<ul class="questions">
<li><a href="/questions/1">How can I create an ArrayList in Java?</a></li>
...
</ul>
The client then could GET /questions/1 which returns the information you need, for example:
<h1 class="title">How can I create an ArrayList in Java?</h1>
<div class="question">...</div>
or an XML or JSON formatted response (that doesn't really matter for this).
The important point is that clients don't need to know about specific urls. The clients only need to know how to find the urls in the pages that contain them. This way there is less coupling between the client and the server.