Source: site.view [edit]
Function name: yahooWebCount
Arguments: search
Description: Find links to webpages matching 'search'
Page type: webl
Render function:  
Module: global

Page source:

var P = GetURL("http://boss.yahooapis.com/ysearch/web/v1/" + Url_Encode(Str_Trim(`"` + search + `"`)),
   [. appid="8fNpn7HV34GMdlIx7Pf1zXA9LkPafkYXJAWknNEEtFFKfGXXwoyozEx8oBZpGw--", format="xml", count="1" .]);

var E = Elem(P, "resultset_web");

var count = 0;
if E != nil then
   count = ToInt(E[0].deephits) ? 0;
end;

// Markup(P);

count;