文章からキーフレーズを抽出し、重要順にならべて返す。
下記サンプルはAjaxにてキーフレーズを取得する方法である。

サンプル

	function test1(){
	
		var text1 = $('#text1').val();
		
	    var data = {
	        "appid":アプリケーションID※,
	        "sentence":text1,
	        "output":"json",
	        "max-result":10,
	      };
		
	    var url = "http://jlp.yahooapis.jp/KeyphraseService/V1/extract";
	
		//☆AJAX非同期通信
		$.ajax({
			url: url,
			data: data,
			cache: false,
			dataType: "jsonp",
			success: function(str_json, type) {
				console.log(str_json);
				
			},
			error: function(xmlHttpRequest, textStatus, errorThrown){
				$('#res').html(xmlHttpRequest.responseText);
				
			}
		});
	}	
	






参考リンク

公式ドキュメント
Yahooキーフレーズ抽出APIメモ (use jQuery)